10 lines
333 B
Plaintext
10 lines
333 B
Plaintext
# Database connection - REQUIRED
|
|
# Format: postgresql+asyncpg://USER:PASSWORD@HOST:PORT/DATABASE
|
|
DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/codetutor
|
|
|
|
# Debug mode (optional, default: false)
|
|
DEBUG=false
|
|
|
|
# CORS allowed origins (optional, default: ["http://localhost:3000"])
|
|
CORS_ORIGINS=["http://localhost:3000"]
|