14 lines
434 B
Text
14 lines
434 B
Text
# Flask Server Configuration
|
|
FLASK_ENV=production
|
|
FLASK_DEBUG=False
|
|
|
|
# Server URL configuration
|
|
PROTOCOL=http # Protocol: http or https
|
|
DOMAIN=localhost # Domain name
|
|
EXTERNAL_PORT=8080 # External port (exposed on host)
|
|
|
|
# Cache timeout (in seconds)
|
|
# CACHE_TIMEOUT: Preview cards cache duration
|
|
# CACHE_FILE_TIMEOUT: Remote social.org files cache duration
|
|
CACHE_TIMEOUT=30
|
|
CACHE_FILE_TIMEOUT=30
|