Monorepo for the Deadlock API project.
api/- Rust API backend (Axum) serving game data, analytics, leaderboards, and morewebsite/- React frontend (Vite + React Router) for the Deadlock API websitetools/- Rust microservices for data ingestion, scraping, and pipeline processing
cd api
cp .env.example .env
# Edit .env with your credentials
cargo runSee api/README.md for full documentation.
cd website
cp .env.example .env
pnpm install
pnpm devcd tools
# Set up .env with your credentials
cargo run -p <service-name>See tools/README.md for full documentation.
MIT