flask mongo boilerplate
1.0.0
这是一个高度可配置的 Python Web 应用程序样板。
它使用 Flask、MongoDB、自定义日志记录和环境配置来实现简单、稳健的开发。
python-boilerplate/ # root directory
core/ # configurations, models and abstractions.
data/ # MongoDB access layer and a factory
ui/ # Contains a Flask application that uses the db
tests/ # Any tests you want to implement
bll/ # Any custom logic you want to use between the UI and the DATA layers.
core/configurations目录包含很多配置。
最重要的是env.py,
DEVELOP_MODE 将控制所选的数据库和日志记录级别。