From 7e01c0ee7a879c7dadde0799e98149ca27b239f3 Mon Sep 17 00:00:00 2001 From: liquidev Date: Sat, 24 Aug 2024 20:09:52 +0200 Subject: [PATCH] update readme again --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d4203f6..5c6d86f 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,15 @@ rustup target add wasm32-unknown-unknown # We use `just` to wrangle the process of building the client-side WebAssembly and the server. cargo install just -# Now it's time to run +# Now it's time to run the backend! just port=8080 profile=release ``` +Then, you can connect to `localhost:8080` to see the app in action. + For development, I recommend using `cargo watch` for live reloading. -`just` defaults to a development configuration. +`just` defaults to a sensible development configuration. +If you need to override the port, use the `port` variable as shown above. ```sh cargo install cargo-watch