1 Star 1 Fork 0

jsdjiazhiheng/sqladvisor-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.py 811 Bytes
一键复制 编辑 原始数据 按行查看 历史
zyw 提交于 2017-05-07 11:36 . 添加#-- coding=utf-8 --
#-*- coding=utf-8 -*-
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or 'hard to guess string'
SQLALCHEMY_COMMIT_ON_TEARDOWN = True
SQLALCHEMY_TRACK_MODIFICATIONS=True
POSTS_PER_PAGE=15
# MYSQL_DATABASE_HOST = '127.0.0.1'
# MYSQL_DATABASE_PORT = 3306
# MYSQL_DATABASE_USER = 'root'
# MYSQL_DATABASE_PASSWORD = 'root'
# MYSQL_DATABASE_DB = 'sqladvisor'
# MYSQL_DATABASE_CHARSET = 'utf8'
@staticmethod
def init_app(app):
pass
class DevelopmentConfig(Config):
DEBUG = True
SQLALCHEMY_DATABASE_URI = os.environ.get('DEV_DATABASE_URL') or 'mysql://root:root@localhost/sqladvisor'
config = {
'development': DevelopmentConfig,
# 'testing': TestingConfig,
# 'production': ProductionConfig,
'default': DevelopmentConfig
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jsdhxkj/sqladvisor-web.git
git@gitee.com:jsdhxkj/sqladvisor-web.git
jsdhxkj
sqladvisor-web
sqladvisor-web
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385