1 Star 0 Fork 5

C.S./question

forked from 曦晓鸿/question 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.py 687 Bytes
一键复制 编辑 原始数据 按行查看 历史
曦晓鸿 提交于 2020-05-29 10:06 . first commit
# _*_ coding:utf-8 _*_
# 开发名称:config
# 开发人员:Agoni
# 开发时间:2020/3/12 17:13
# 开发工具:PyCharm
import os
class Config:
SECRET_KEY = 'agoni'
SQLALCHEMY_TRACK_MODIFICATIONS = True
UP_DIR = os.path.join(os.path.abspath(os.path.dirname(__file__)), "app/static/uploads/") # 文件上传路径
FC_DIR = os.path.join(os.path.abspath(os.path.dirname(__file__)), "app/static/uploads/users/") # 用户头像上传路径
@staticmethod
def init_app(app):
pass
class DevelopmentConfig(Config):
SQLALCHEMY_DATABASE_URI="mysql+mysqlconnector://root:123456@localhost:3306/questions"
config={
'default':DevelopmentConfig
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Li_Qipeng/question.git
git@gitee.com:Li_Qipeng/question.git
Li_Qipeng
question
question
master

搜索帮助