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.

Add cargo-nextest to justfile, update README

Ben C 1366ad4b 3f2558de

+7 -1
+6 -1
README.md
··· 30 30 - [Rust](https://rustup.rs) 31 31 - [Just](https://just.systems) (`cargo install just`) 32 32 - **On Windows**: Some implementation of `sh` (Git for Windows works well) 33 + - Cargo Nextest (only needed for running `just check-rust`, `cargo install cargo-nextest`) 33 34 - [Tauri's Pre-reqs](https://tauri.app/start/prerequisites/) 34 35 - [(Also pre-reqs for mobile dev if you are working on the app part)](https://tauri.app/start/prerequisites/#configure-for-mobile-targets) 35 36 - Tauri's CLI (`cargo install tauri-cli`) ··· 59 60 60 61 ### Project Layout 61 62 63 + - [manhunt-logic/](https://github.com/Bwc9876/manhunt-app/tree/main/manhunt-logic): 64 + Game and lobby logic for the app 65 + - [manhunt-transport/](https://github.com/Bwc9876/manhunt-app/tree/main/manhunt-transport): 66 + Transport (networking) implementation for communication between apps 62 67 - [backend/](https://github.com/Bwc9876/manhunt-app/tree/main/backend): App 63 68 backend, Rust side of the Tauri application 64 69 - [frontend/](https://github.com/Bwc9876/manhunt-app/tree/main/frontend): App ··· 74 79 75 80 - `just fmt`: Formats all files in the repo 76 81 - `just check-rust`: Check (and fix) potential issues with Rust code 77 - (only need to run if you edited the backend or signaling) 82 + (only need to run if you edited rust code) 78 83 - `just check-frontend`: Check for potential issues on the frontend 79 84 (only need to run if you edited the frontend) 80 85
+1
justfile
··· 29 29 cargo fmt --check 30 30 cargo check 31 31 cargo clippy --fix --allow-dirty --allow-staged -- -D warnings 32 + cargo nextest run 32 33 33 34 # Run lint on the frontend 34 35 [working-directory('frontend')]