From 5ca2ec2e723665f667e06ff396a81b6e08f43e2b Mon Sep 17 00:00:00 2001 From: bingryan Date: Mon, 30 Aug 2021 16:06:53 +0800 Subject: [PATCH] docs(update doc): update doc --- .gitignore | 1 - Call.yml | 20 ++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 6 +++++- docs/tutorial.md | 3 +++ 6 files changed, 30 insertions(+), 4 deletions(-) create mode 100755 Call.yml create mode 100644 docs/tutorial.md diff --git a/.gitignore b/.gitignore index 71a273c..3536ffa 100755 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,3 @@ .idea/ **/expand.rs -.local/Call.yml \ No newline at end of file diff --git a/Call.yml b/Call.yml new file mode 100755 index 0000000..54edf1c --- /dev/null +++ b/Call.yml @@ -0,0 +1,20 @@ +call: + config: + active: + openssh: + - dev + runner: make + mapping: + src: . + dest: ~/workspace/call-2.0 + exclude: + - ./target + - README.md + server: + openssh: + dev: + host: + - 192.168.2.26 + port: 22 + authentication_type: openssh + username: rust diff --git a/Cargo.lock b/Cargo.lock index 6f4636a..6355314 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -487,7 +487,7 @@ dependencies = [ [[package]] name = "rust-call" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 01e1714..1eebf0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-call" -version = "0.2.0" +version = "0.3.0" authors = ["bingryan "] edition = "2018" license = "Apache-2.0" diff --git a/README.md b/README.md index 1c41dee..0531fb6 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,11 @@ $ brew install http://git.io/sshpass.rb(if notwork, copy raw content to `sshpass * [ ] ~~Call Server(Relay Server): relay server which is able to coordinate with clients to establish connectivity(use other port forward tools).~~ * [x] default template(Put the template.yml under ~/.call/template.yml and copy it directly when run: call i) +## Tutorial + +[Tutorial Doc](./docs/tutorial.md) + ## Contributing -Contributors are welcomed to join this project. Please check [CONTRIBUTING](./CONTRIBUTING.md) about how to contribute +Contributors are welcomed to join this project. Please check [CONTRIBUTING](./.github/CONTRIBUTING.md) about how to contribute to this project. diff --git a/docs/tutorial.md b/docs/tutorial.md new file mode 100644 index 0000000..5a65bfc --- /dev/null +++ b/docs/tutorial.md @@ -0,0 +1,3 @@ +# tutorial + +TODO \ No newline at end of file