-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (20 loc) · 1020 Bytes
/
.env.example
File metadata and controls
23 lines (20 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# =============================================================================
# Environment Variables Template
# =============================================================================
# Copy this file to create your own .env: cp .env.example .env
#
# The .env file is where you store configuration that varies between
# environments (development, staging, production) or contains secrets
# (like API keys). It is loaded automatically by Pydantic Settings
# in backend/app/config.py.
#
# IMPORTANT: .env is listed in .gitignore — it will NOT be committed to git.
# This is intentional: secrets should never be stored in version control.
# =============================================================================
# Application
APP_NAME="My App"
DEBUG=false
# CORS (comma-separated origins are not supported by default; modify config.py if needed)
CORS_ORIGINS=["http://localhost:5173"]
# Database (uncomment when db service is enabled)
# DATABASE_URL=postgresql://postgres:postgres@localhost:5432/app