interactive intro to open social at-me.zzstoatzz.io
at dd672f46f5059cd676e381a5ef3593afd38e5a4f 33 lines 521 B view raw
1# development tasks for at-me 2 3# run the app with hot reloading 4dev: 5 cargo watch -w src -w static -x 'run' 6 7# run on specific port with hot reloading 8dev-port PORT='3000': 9 PORT={{PORT}} cargo watch -w src -w static -x 'run' 10 11# build the project 12build: 13 cargo build --release 14 15# run tests 16test: 17 cargo test 18 19# deploy to fly.io 20deploy: 21 fly deploy 22 23# check code with clippy 24check: 25 cargo clippy 26 27# format code 28fmt: 29 cargo fmt 30 31# delete all visit records from your PDS 32clean-up-my-visits: 33 uv run scripts/delete_visits.py