From 6050f1cb70e4b247b40773555e67d3b4d4b001e8 Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Sat, 6 Jul 2024 18:12:47 -0700 Subject: [PATCH] Readme with basic instructions for running. --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..17ff54f --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Captain's Log + +A WIP bespoke task tracking app with a userbase of 1. + +## Running the server + +There are 3 servers to run to enable hot reloading of the frontend +and backend. The server can then be accessed at `localhost:8000` in +the browser. + + +```bash +$ cargo watch -x run +$ cd frontend/ +$ elm-watch hot +$ cadddy run +```