Files
order/config/production_setting.py

12 lines
282 B
Python
Raw Normal View History

2019-08-13 11:05:09 +08:00
# -*- coding: utf-8 -*-
DEBUG = True
SQLALCHEMY_ECHO = True
2019-08-13 11:37:28 +08:00
SQLALCHEMY_DATABASE_URI = 'mysql://root:123456@127.0.0.1/food_db'
2019-08-13 11:05:09 +08:00
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_ENCODING = "utf8mb4"
2019-08-21 11:13:18 +08:00
2019-08-13 11:05:09 +08:00
APP = {
2019-08-21 13:24:46 +08:00
'domain': 'http://106.52.204.179:8999'
2019-08-13 11:05:09 +08:00
}
RELEASE_VERSION="20180729001"