-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
30 lines (24 loc) · 775 Bytes
/
env.example
File metadata and controls
30 lines (24 loc) · 775 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
# Orion Sphere LRP Environment Configuration
# Copy this file to .env and modify the values as needed
# Security
SECRET_KEY=your-secret-key-here
# Database Configuration
# In production, use /var/lib/os-app/ for persistent storage
# In development, leave empty or comment out to use ./db/ (relative to project root)
# DATABASE_PATH=/var/lib/os-app
# Server Configuration
FLASK_RUN_PORT=5000
SSL_ENABLED=false
SSL_CERT_FILE=data/ssl/cert.pem
SSL_KEY_FILE=data/ssl/key.pem
# Application Configuration
BASE_URL=http://localhost
# Email Configuration (Gmail)
MAIL_SERVER=smtp.gmail.com
MAIL_PORT=587
MAIL_USE_TLS=true
MAIL_USERNAME=your-email@gmail.com
MAIL_PASSWORD=your-app-password
MAIL_DEFAULT_SENDER=Orion Sphere LRP <your-email@gmail.com>
# Development
FLASK_DEBUG=1