Files
order/config/base_setting.py
2019-08-02 18:24:04 +08:00

46 lines
747 B
Python

# -*- coding: utf-8 -*-
SERVER_PORT = 8999
DEBUG = False
SQLALCHEMY_ECHO = False
AUTH_COOKIE_NAME = "mooc_food"
##过滤url
IGNORE_URLS = [
"^/user/login",
"^/api"
]
IGNORE_CHECK_LOGIN_URLS = [
"^/static",
"^/favicon.ico"
]
PAGE_SIZE = 50
PAGE_DISPLAY = 10
STATUS_MAPPING = {
"1":"正常",
"0":"已删除"
}
MINA_APP = {
'appid':'wx2c65877d37fc29bf',
'appkey':'8c61791794cde415042924a9714542a9',
'paykey':'xxxxxxxxxxxxxx换自己的',
'mch_id':'xxxxxxxxxxxx换自己的',
'callback_url':'/api/order/callback'
}
UPLOAD = {
'ext':[ 'jpg','gif','bmp','jpeg','png' ],
'prefix_path':'/web/static/upload/',
'prefix_url':'/static/upload/'
}
APP = {
'domain':'http://127.0.0.1:9000'
}