# Flask application secret key for session protection. # IMPORTANT: Change this to a long, random string in your .env file. # You can generate one using: python -c "import secrets; print(secrets.token_hex(24))" SECRET_KEY='change-me-to-a-real-secret-key' # Database connection URL. # Format: mysql+pymysql://:@:/ # Example for a local MySQL server: DATABASE_URL='mysql+pymysql://root:your_password@localhost:3306/temp_spec_db'