This repository houses a React progressive web app serving as the offline-first scouting app custom designed for use by I.C.E. Robotics in the 2025 FIRST Tech Challenge game, Into the Deep.
Message @liujip0 on Discord if you have any questions.
Use either GitHub CLI:
gh repo clone liujip0/scoutingor git:
git clone https://github.com/liujip0/scouting.gitcd ice-scoutpnpm installCreate a file called .env.local in app/src/
VITE_SERVER_URL="http://localhost:8788"Create a file called .dev.vars in api/
ADMIN_ACCOUNT_USERNAME="admin"
ADMIN_ACCOUNT_PASSWORD="adminpassword"
FIRST_API_TOKEN=<Direct message @liujip0 on Discord>
TBA_API_TOKEN=<Direct message @liujip0 on Discord>
JWT_PRIVATE_KEY="xc03o1xblf4rga87xss3ebztlc8f5r9l"Change to api/ folder
cd apiInitialize local database
npx wrangler d1 execute ice-scout-db --file=./migrations/0000_initialize.sqlReturn to original folder
cd ..pnpm devThe frontend will be on localhost:5174 and the backend will be on localhost:8788.