···8899### with nix
10101111-- run the server: `nix run git+https://tangled.sh/poor.dog/nsid-tracker#server`
1212-- build the client: `nix build git+https://tangled.sh/poor.dog/nsid-tracker#client`
1111+- run the server: `nix run git+https://tangled.sh/@poor.dog/nsid-tracker#server`
1212+- build the client: `nix build git+https://tangled.sh/@poor.dog/nsid-tracker#client`
13131414### manually
1515···19192020```bash
2121# start the backend
2222-cd server
2323-cargo run
2222+cd server && cargo run
24232524# in another terminal, start the frontend
2626-cd client
2727-bun install && bun run -b dev
2525+cd client && bun install && bun run -b dev
2826```
29273028the frontend will be available at `http://localhost:5173` and the backend at `http://localhost:3713`.