14 lines
476 B
Bash
Executable file
14 lines
476 B
Bash
Executable file
# MongoDB Configuration - these are the MongoDB admin credentials, not app credentials
|
|
MONGO_URI=mongodb://localhost:27017/semblance_db
|
|
|
|
# If you need to connect to MongoDB with authentication, uncomment and set these values
|
|
# MONGO_USER=admin
|
|
# MONGO_PASSWORD=password
|
|
|
|
# Flask app settings
|
|
FLASK_APP=run.py
|
|
FLASK_DEBUG=1
|
|
# FLASK_ENV is deprecated in Flask 2.x, using FLASK_DEBUG instead
|
|
SECRET_KEY=your-secret-key-for-sessions-and-tokens
|
|
|
|
OPENAI_API_KEY=REDACTED_OPENAI_KEY
|