Files
order/config/local_setting.py
2019-07-21 18:20:01 +08:00

8 lines
216 B
Python

# -*- coding: utf-8 -*-
SERVER_PORT = 9000
DEBUG = True
SQLALCHEMY_ECHO = True
SQLALCHEMY_DATABASE_URI = 'mysql://root:123456@127.0.0.1/food_db'
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_ENCODING = "utf8mb4"