Assetto Corsa's Server Manager
  • TypeScript 73.1%
  • Go 24.5%
  • CSS 1.7%
  • Dockerfile 0.4%
  • JavaScript 0.2%
  • Other 0.1%
Find a file
2026-04-22 15:22:45 +02:00
backend Phase 4 - Execution and Logging setup 2026-04-22 15:22:45 +02:00
frontend feat: Job Detail Page UI #40 2026-04-21 18:04:26 +02:00
.gitignore chore: update gitignore with pgdata 2026-02-23 11:38:18 +01:00
compose.dev.yml gngngn 2026-02-23 21:55:59 +01:00
Makefile feat: setup sqlc for code gen 2026-02-23 20:31:04 +01:00
README.md feat: add basic readme 2026-02-28 21:23:03 +01:00

Assetto Corsa Server Manager (ACSM)

Setup for dev

Database:

docker compose -f compose.dev.yml postgres
make migrate-up

Backend:

cd backend
cp .env.example .env
go run ./cmd/seed
# ...
go run ./cmd/api

Fontend:

cd frontend
cp .env.local.example .env.local
npm run ci
npm run dev