-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (35 loc) · 1.3 KB
/
Copy path.env.example
File metadata and controls
42 lines (35 loc) · 1.3 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
# ===========================================
# Database Configuration
# ===========================================
# SQLite (default - file-based, backup included in container)
DATABASE_URL=sqlite+aiosqlite:///app/data/propus_spool.db
# MySQL (external database - backup handled by admin)
# DATABASE_URL=mysql+aiomysql://user:pass@host:3306/dbname
# PostgreSQL (external database - backup handled by admin)
# DATABASE_URL=postgresql+asyncpg://username:password@hostname:3306/database
# ===========================================
# Security
# ===========================================
# Generate secure keys with: openssl rand -hex 32
SECRET_KEY=change-me-in-production
CSRF_SECRET_KEY=change-me-in-production
# ===========================================
# Admin User (optional - creates default admin)
# ===========================================
ADMIN_EMAIL=admin@example.com
ADMIN_PASSWORD=admin123
ADMIN_DISPLAY_NAME=Admin
ADMIN_LANGUAGE=en
ADMIN_SUPERADMIN=true
# ===========================================
# Application Settings
# ===========================================
DEBUG=false
CORS_ORIGINS=*
# ===========================================
# Logging
# ===========================================
# Log level: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=INFO
# Log format: text or json
LOG_FORMAT=text