Files
order/config/local_setting.py

8 lines
244 B
Python
Raw Normal View History

2019-07-17 16:36:59 +08:00
# -*- coding: utf-8 -*-
DEBUG = True
SQLALCHEMY_ECHO = True
2023-10-25 11:49:01 +08:00
SQLALCHEMY_DATABASE_URI = 'mysql://root:123456@127.0.0.1/food_db?charset=utf8mb4'
2019-07-17 16:36:59 +08:00
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_ENCODING = "utf8mb4"
2019-07-29 15:28:02 +08:00
# RELEASE_VERSION = "20190730"