- Bootstrap script for creating monorepo projects - FastAPI backend templates with uv, ruff, mypy, pytest - React frontend templates with TypeScript, ESLint, Prettier - Docker Compose setup with backend, frontend, and database - 9 development and CI scripts - Gitea Actions CI/CD workflows - Comprehensive documentation (8 files) - 45 template files for complete project structure - Automated verification script (all tests pass) - Based on coding-agent-rules standards
17 lines
264 B
Plaintext
17 lines
264 B
Plaintext
# Docker Compose Environment Variables
|
|
|
|
# Backend
|
|
BACKEND_PORT=8000
|
|
DEBUG=true
|
|
LOG_LEVEL=INFO
|
|
|
|
# Frontend
|
|
FRONTEND_PORT=3000
|
|
REACT_APP_API_URL=http://localhost:8000
|
|
|
|
# Database
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=appdb
|
|
POSTGRES_PORT=5432
|