- 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
22 lines
390 B
Plaintext
22 lines
390 B
Plaintext
# Application
|
|
APP_NAME=backend
|
|
APP_VERSION=0.1.0
|
|
DEBUG=true
|
|
LOG_LEVEL=INFO
|
|
|
|
# API
|
|
API_HOST=0.0.0.0
|
|
API_PORT=8000
|
|
API_PREFIX=/api/v1
|
|
|
|
# CORS
|
|
CORS_ORIGINS=http://localhost:3000,http://localhost:8080
|
|
|
|
# Database (if needed)
|
|
# DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/dbname
|
|
|
|
# Security
|
|
# SECRET_KEY=your-secret-key-here
|
|
# ALGORITHM=HS256
|
|
# ACCESS_TOKEN_EXPIRE_MINUTES=30
|