Note on CI, Makefile

main
~erin 2023-04-17 17:39:17 -04:00
parent 82a13d8c3d
commit 831ecad40c
Signed by: erin
GPG Key ID: 9A8E308CEFA37A47
2 changed files with 10 additions and 0 deletions

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
run:
@mdbook serve --open
deploy:
@mdbook clean
@mdbook build
@rsync -rauz --del --groupmap=erin:www-data --progress book/ erin@is-cute.ml:~/mercury-book
@git push -u origin main

View File

@ -28,3 +28,6 @@ Use inline [rustdoc](https://doc.rust-lang.org/rustdoc/what-is-rustdoc.html) to
## 4. Push
Push the code to a new branch in the repository.
If it's ready and fully working, make a pull request to merge it into `main`.
## 5. CI
Eventually, I want to have **CI** enabled, to allow automated tests, checking, and releases.