Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: local-run.mdx still suggests running shuttle as cargo command instead of shell command #304

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/local-run.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ Here are some small tips and tricks to boost your productivity when developing l
To live reload your Shuttle app when you save a file, you can use [cargo-watch](https://github.com/watchexec/cargo-watch):

```bash
# This will e(x)ecute `shuttle run` when you save a file.
cargo watch -x 'shuttle run'
# This will execute `shuttle run` when you save a file.
cargo watch -s 'shuttle run'
# This will also (q)uietly (c)lear the console between runs.
cargo watch -qcx 'shuttle run'
cargo watch -qcs 'shuttle run'

# There are many other helpful options, see `cargo watch --help`
```
Expand Down
Loading