| 12345678910111213141516 |
- # app/config/setting.py
- #MONGO_URI = 'mongodb://username:password@host:port'
- #MONGO_DBNAME = 'your_db_name'
- #MONGODB_SETTINGS = {
- # 'db': 'your_db_name',
- # 'host': 'your_db_host',
- # 'port': 27017,
- # 'username': 'your_db_username',
- # 'password': 'your_db_password',
- #}
-
- MONGO_URI = 'mongodb://127.0.0.1:27017/starter_db'
- MONGO_DBNAME = 'starter_db'
- JSON_AS_ASCII = False
-
- JWT_SECRET_KEY = 'heweidabangzi77!'
|