# Application
PROJECT_NAME=<project_name>
ENVIRONMENT=development

# JWT — replace SECRET_KEY before deploying:
#   python -c "import secrets; print(secrets.token_urlsafe(32))"
SECRET_KEY=changethis-please-generate-a-real-32-byte-key
JWT_ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
REFRESH_TOKEN_EXPIRE_DAYS=14

# Database — SQLite by default. For PostgreSQL:
#   DATABASE_URL=postgresql+psycopg://postgres:postgres@localhost:5432/app_db
DATABASE_URL=sqlite:///./app.db

# Optional bootstrap superuser, created on startup when both are set
FIRST_SUPERUSER_EMAIL=
FIRST_SUPERUSER_PASSWORD=

# Comma-separated list, e.g. http://localhost:3000,http://localhost:5173
BACKEND_CORS_ORIGINS=
