| 1234567891011121314151617181920 |
- # Copy this file to .env and replace the sample values with your real deployment settings.
- # This file is tracked in git and is safe to version because it contains no real secrets.
- SECRET_KEY=change-me-in-production
- FLASK_ENV=production
- # MySQL configuration for the application container.
- # For Docker Desktop / host-based MySQL, use host.docker.internal.
- MYSQL_HOST=host.docker.internal
- MYSQL_PORT=3306
- MYSQL_USER=root
- MYSQL_PASSWORD=your_mysql_password_here
- MYSQL_DB=flask
- MYSQL_CHARSET=utf8mb4
- # Optional logging settings
- LOG_FILE=logs/app.log
- LOG_MAX_BYTES=10485760
- LOG_BACKUP_COUNT=5
- EXTERNAL_LOG_URL=
|