10 lines
471 B
Plaintext
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'
|