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 將控制所選的資料庫和日誌記錄等級。