12 lines
385 B
Text
12 lines
385 B
Text
# KV-Tube Environment Configuration
|
|
# Copy this file to .env and customize as needed
|
|
|
|
# Secret key for Flask sessions (required for production)
|
|
# Generate a secure key: python -c "import os; print(os.urandom(32).hex())"
|
|
SECRET_KEY=your-secure-secret-key-here
|
|
|
|
# Environment: development or production
|
|
FLASK_ENV=development
|
|
|
|
# Local video directory (optional)
|
|
KVTUBE_VIDEO_DIR=./videos
|