-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (23 loc) · 894 Bytes
/
.env.example
File metadata and controls
30 lines (23 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""Environment variables template for local development.
Copy this file to .env and update with your local configuration:
cp .env.example .env
Never commit .env to version control!
"""
# Database Configuration
# Examples:
# SQLite (local development): sqlite+aiosqlite:///./app.db
# PostgreSQL: postgresql+asyncpg://user:password@localhost:5432/dbname
# MySQL: mysql+aiomysql://user:password@localhost:3306/dbname
DATABASE_URL=sqlite+aiosqlite:///./test.db
# API Configuration
API_TITLE=FastAPI Blueprint
API_VERSION=1.0.0
API_DESCRIPTION=Clean Architecture FastAPI Blueprint
# Debug Mode
# Set to True for development, False for production
DEBUG=True
# Logging Level
# Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=INFO
# CORS Configuration (comma-separated list of allowed origins)
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:8080,http://localhost:5173