This commit is contained in:
beabigegg
2025-07-29 20:24:40 +08:00
commit d1d68e66a7
28 changed files with 2069 additions and 0 deletions

9
.env.example Normal file
View File

@@ -0,0 +1,9 @@
# 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'