2 Star 2 Fork 0

王志乔/News

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.py 876 Bytes
一键复制 编辑 原始数据 按行查看 历史
thebs 提交于 2018-07-02 22:04 . 实现登陆注册相关功能
import logging
from redis import StrictRedis
class Config(object):
SECRET_KEY = 'L/A2is1J8pRjLpUuzrbQl8IX+FiekTJ9nJeQOGAcIOqJcOvmY/B+TnV2XQpM6m1+'
SQLALCHEMY_DATABASE_URI = "mysql://root:mysql@127.0.0.1:3306/news"
SQLALCHEMY_TRACK_MODIFICATIONS = False
SQLALCHEMY_COMMIT_ON_TEARDOWN = True
REDIS_HOST = "127.0.0.1"
REDIS_PORT = 6379
SESSION_TYPE = "redis"
SESSION_USE_SIGNER = True
SESSION_REDIS = StrictRedis(host=REDIS_HOST, port=REDIS_PORT)
PERMANENT_SESSION_LIFETIME = 86400 * 2
LOG_LEVEL = logging.DEBUG
class DevelopementConfig(Config):
DEBUG = True
class ProductionConfig(Config):
DEBUG = False
LOG_LEVEL = logging.ERROR
class TestingConfig(Config):
DEBUG = True
TESTING = True
config = {
"developement":DevelopementConfig,
"production":ProductionConfig,
"testing":TestingConfig
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/thebs428920/News.git
git@gitee.com:thebs428920/News.git
thebs428920
News
News
master

搜索帮助