2 Star 1 Fork 32

rembern/TLv8-Flask-layui

forked from 陈乾/TLv8-Flask-layui 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.py 885 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈乾 提交于 2022-06-12 21:37 . 文档中心-完成基础功能
# -*- coding=utf-8 -*-
import os
class Config:
SECRET_KEY = 'tlv8-flask'
SQLALCHEMY_TRACK_MODIFICATIONS = True
UP_DIR = os.path.join(os.path.abspath(os.path.dirname(__file__)), "uploads") # 文件上传路径
MAX_CONTENT_LENGTH = 100 * 1024 * 1024 # 上传文件限制为最大 100 MB
@staticmethod
def init_app(app):
f = open('app/banner.txt', 'r')
file_contents = f.read()
print(file_contents)
f.close()
# the config for development
class DevelopmentConfig(Config):
SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://root:TLv8MySQL@127.0.0.1:3306/tlv8'
DEBUG = True
# 生产环境
class ProductionConfig(Config):
SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://root:TLv8MySQL@127.0.0.1:3306/tlv8'
DEBUG = False
# define the config
config = {
'default': DevelopmentConfig,
'production': ProductionConfig
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/rembern/tlv8-python-flask.git
git@gitee.com:rembern/tlv8-python-flask.git
rembern
tlv8-python-flask
TLv8-Flask-layui
master

搜索帮助