6 lines
176 B
Python
6 lines
176 B
Python
FLASK_CONFIG = {
|
|
"SQLALCHEMY_DATABASE_URI": "postgresql://user:password@host:5432/dbname",
|
|
'SQLALCHEMY_TRACK_MODIFICATIONS': True,
|
|
'SECRET_KEY': "random string",
|
|
}
|