Making note of the (finicky) watch run commands

This commit is contained in:
Dave Hrycyszyn
2024-06-12 15:07:03 +01:00
parent 0a74c86c5e
commit 28e606ba51

25
README.md Normal file
View File

@@ -0,0 +1,25 @@
# Side
## Running in development
To init a Side node:
```bash
cd side-node
cargo run -- init node1
```
To start a node with a cargo watch for development purposes (from the side-node dir):
```bash
cargo watch -x "run -- run -- node1"
```
To run the watcher:
```bash
cd side-watcher
cargo watch -x run
```