update project structure

This commit is contained in:
sunface 2022-02-28 21:32:54 +08:00
parent 95dee9dac7
commit b8009cfe83
90 changed files with 26 additions and 30 deletions

View File

@ -14,7 +14,7 @@ level = 1
[output.html] [output.html]
git-repository-url = "https://github.com/sunface/rust-by-practice" git-repository-url = "https://github.com/sunface/rust-by-practice"
edit-url-template = "https://github.com/sunface/rust-by-practice/edit/master/en/{path}" edit-url-template = "https://github.com/sunface/rust-by-practice/edit/master/{path}"
[rust] [rust]
edition = "2021" edition = "2021"

View File

@ -1,7 +1,25 @@
cd en ## this script deploys the static website of course.rs to github pages
./deploy
cd ../zh-CN ## build static website for book
./deploy mdbook build
## copy CNAME info to book dir
cp ./assets/CNAME ./book/
cp ./assets/*.html ./book/
cp ./assets/sitemap.xml ./book/
cd .. ## init git repo
cd book
git init
git config user.name "sunface"
git config user.email "cto@188.com"
git add .
git commit -m 'deploy'
git branch -M gh-pages
git remote add origin https://github.com/sunface/rust-by-practice
## push to github pages
git push -u -f origin gh-pages
## deploy zh-CN
cd ./zh-CN
./deploy

@ -1 +0,0 @@
Subproject commit 036e93c39b5b15957364207bfdfaf93e0b06ffc8

View File

@ -1,21 +0,0 @@
## this script deploys the static website of course.rs to github pages
## build static website for book
mdbook build
## copy CNAME info to book dir
cp ./assets/CNAME ./book/
cp ./assets/*.html ./book/
cp ./assets/sitemap.xml ./book/
## init git repo
cd book
git init
git config user.name "sunface"
git config user.email "cto@188.com"
git add .
git commit -m 'deploy'
git branch -M gh-pages
git remote add origin https://github.com/sunface/rust-by-practice
## push to github pages
git push -u -f origin gh-pages

View File

View File

@ -16,7 +16,7 @@
- [Slice](compound-types/slice.md) - [Slice](compound-types/slice.md)
- [Tuple](compound-types/tuple.md) - [Tuple](compound-types/tuple.md)
- [Struct](compound-types/struct.md) - [Struct](compound-types/struct.md)
- [Enum todo](compound-types/enum.md) - [Enum](compound-types/enum.md)
- [Flow Control todo](flow-control.md) - [Flow Control todo](flow-control.md)
- [Pattern Match todo](pattern-match/intro.md) - [Pattern Match todo](pattern-match/intro.md)
- [match, if let](pattern-match/match-iflet.md) - [match, if let](pattern-match/match-iflet.md)

View File

@ -16,7 +16,7 @@
- [切片](compound-types/slice.md) - [切片](compound-types/slice.md)
- [元组](compound-types/tuple.md) - [元组](compound-types/tuple.md)
- [结构体](compound-types/struct.md) - [结构体](compound-types/struct.md)
- [枚举 undo](compound-types/enum.md) - [枚举](compound-types/enum.md)
- [流程控制 todo](flow-control.md) - [流程控制 todo](flow-control.md)
- [模式匹配 todo](pattern-match/intro.md) - [模式匹配 todo](pattern-match/intro.md)
- [match 和 if let](pattern-match/match-iflet.md) - [match 和 if let](pattern-match/match-iflet.md)