.env.example 611 B

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