- Add Spring Boot 3.4 backend with health API, CORS, and dev/prod profiles - Add React 18 + Vite frontend with typed health client - Configure NX workspace, pnpm, and Docker Compose stacks - Document stack, commands, and layout in README - Add .gitignore for Node, Java, Docker, and IDE artifacts
16 lines
548 B
Text
16 lines
548 B
Text
# ──────────────────────────────────────────
|
|
# CityGame — Environment Variables
|
|
# Copy this file to .env and fill in values
|
|
# ──────────────────────────────────────────
|
|
|
|
# === Database ===
|
|
DB_NAME=citygame
|
|
DB_USERNAME=citygame
|
|
DB_PASSWORD=citygame_change_me_in_prod
|
|
|
|
# === Backend ===
|
|
BACKEND_PORT=8080
|
|
CORS_ALLOWED_ORIGINS=http://localhost
|
|
|
|
# === Frontend ===
|
|
FRONTEND_PORT=80
|