26 lines
606 B
Plaintext
26 lines
606 B
Plaintext
# SKE Digital Signage Environment Configuration
|
|
# Copy this file to .env and customize for your environment
|
|
|
|
# Secret key for Flask sessions (CHANGE THIS IN PRODUCTION!)
|
|
SECRET_KEY=ske-signage-production-secret-change-me
|
|
|
|
# Admin user credentials
|
|
ADMIN_USER=admin
|
|
ADMIN_PASSWORD=ChangeMe123!
|
|
|
|
# Database configuration
|
|
DATABASE_URL=sqlite:///./instance/ske_signage.db
|
|
|
|
# Server configuration
|
|
HOST=0.0.0.0
|
|
PORT=5000
|
|
FLASK_CONFIG=production
|
|
FLASK_DEBUG=false
|
|
|
|
# Logging configuration
|
|
LOG_LEVEL=INFO
|
|
|
|
# File processing paths (optional, defaults to system paths)
|
|
FFMPEG_PATH=ffmpeg
|
|
LIBREOFFICE_PATH=libreoffice
|