1 Star 0 Fork 0

黑龙江蓝鹏数据科技有限公司/WoLink_PropertyManager_Platform_Backend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.py 770 Bytes
一键复制 编辑 原始数据 按行查看 历史
# -*- coding: utf-8 -*-
# Time : 2019/12/28 - 20:29
# Author : dingyan
# FileName : config
# Version : python v3.6.1
# mysql sqla set
SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://wo_link:!%[email protected]:3306/WOLINK_SYSTEM_DB'
SQLALCHEMY_TRACK_MODIFICATIONS = True
# login set
SECRET_KEY = 'wolink_system'
AUTH_SALT = '111'
# redis set
class Config(object):
@staticmethod
def init_app(app):
pass
class DBConfig(Config):
user = 'wo_link'
password = '!%1q2w3e4r88'
db_name = 'WOLINK_SYSTEM_DB'
host_name = '192.168.4.111'
class DevelopmentConfig(Config):
DEBUG = True
class ProductionConfig(Config):
DEBUG = False
config = {
'development': DevelopmentConfig,
'production': ProductionConfig
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/creatmaker/WoLink_PropertyManager_Platform_Backend.git
[email protected]:creatmaker/WoLink_PropertyManager_Platform_Backend.git
creatmaker
WoLink_PropertyManager_Platform_Backend
WoLink_PropertyManager_Platform_Backend
master

搜索帮助