Files
TEMP_spec_system/.env.example
beabigegg d1d68e66a7 Ok
2025-07-29 20:24:40 +08:00

10 lines
471 B
Plaintext

# 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://<user>:<password>@<host>:<port>/<database_name>
# Example for a local MySQL server:
DATABASE_URL='mysql+pymysql://root:your_password@localhost:3306/temp_spec_db'