Live location tracking and playback for the game "manhunt"
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Combine check-backend and check-signaling recipes

Ben C 9cd533a7 673be726

+3 -10
+2 -2
README.md
··· 60 60 As you go, please run these `just` commands every-so-often and before you commit: 61 61 62 62 - `just fmt`: Formats all files in the repo 63 - - `just check-backend`: Check (and fix) potential issues on the backend 64 - (only need to run if you edited the backend) 63 + - `just check-rust`: Check (and fix) potential issues with Rust code 64 + (only need to run if you edited the backend or signaling) 65 65 - `just check-frontend`: Check for potential issues on the frontend 66 66 (only need to run if you edited the frontend) 67 67 - `just check-signaling`: Same thing as backend but for the singaling server
+1 -8
justfile
··· 21 21 cargo tauri android dev 22 22 23 23 # Run a check on the backend 24 - [working-directory('backend')] 25 - check-backend: 26 - cargo fmt --check 27 - cargo check 28 - cargo clippy --fix --allow-dirty --allow-staged -- -D warnings 29 - 30 - [working-directory('manhunt-signaling')] 31 - check-signaling: 24 + check-rust: 32 25 cargo fmt --check 33 26 cargo check 34 27 cargo clippy --fix --allow-dirty --allow-staged -- -D warnings