Files
order/config/local_setting.py

8 lines
216 B
Python
Raw Normal View History

2019-07-17 16:36:59 +08:00
# -*- coding: utf-8 -*-
2019-07-21 18:20:01 +08:00
SERVER_PORT = 9000
2019-07-17 16:36:59 +08:00
DEBUG = True
SQLALCHEMY_ECHO = True
2019-07-21 18:20:01 +08:00
SQLALCHEMY_DATABASE_URI = 'mysql://root:123456@127.0.0.1/food_db'
2019-07-17 16:36:59 +08:00
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_ENCODING = "utf8mb4"