Compare commits

...

2 Commits

Author SHA1 Message Date
~erin 5c278fc915
Convert some links to drafts 2023-04-17 17:42:28 -04:00
~erin 831ecad40c
Note on CI, Makefile 2023-04-17 17:39:17 -04:00
6 changed files with 19 additions and 10 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

@ -8,15 +8,14 @@
- [Security Features](development/design/security.md)
- [Microkernel](development/design/kernel.md)
- [GUI](development/design/gui.md)
- [Filesystem](development/filesystem.md)
- [Filesystem](development/design/filesystem.md)
- [Configuring a Build Environment](development/environment.md)
- [Development Workflow](development/workflow.md)
- [Running Tests](development/tests.md)
- [Using the OS](user/README.md)
- [Running in a Virtual Machine](user/virtual-machine.md)
- [Running on Baremetal](user/baremetal.md)
- [General Use](user/use/README.md)
- [Working in the Shell](user/use/shell.md)
- [Navigating the GUI](user/use/gui.md)
- [Configuring the System](user/use/config.md)
- [Working with Actors](user/use/actors.md)
- [Running in a Virtual Machine]()
- [Running on Baremetal]()
- [General Use]()
- [Working in the Shell]()
- [Navigating the GUI]()
- [Configuring the System]()
- [Working with Actors]()

View File

@ -1 +0,0 @@
# Running Tests

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.

View File

@ -1 +1,2 @@
# Using the OS
Once we actually have a working `kernel`, information on running it will be added here!