# flask_app_template **Repository Path**: pyco/flask_app_template ## Basic Information - **Project Name**: flask_app_template - **Description**: flask app template with blueprint - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-12-07 - **Last Updated**: 2021-01-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # flask_app_template A flask template for [cookiecutter](https://cookiecutter.readthedocs.io). 基本目录树和很接近这本书 https://book.douban.com/subject/26274202/ ## Usage ```bash $ pip install cookiecutter $ cookiecutter https://github.com/dodoru/flask_app_template.git checkout={git_tag} ``` === ##### v0版树目录结构如下 . ├── README.md ├── requirements.txt ├── deploy-requirements.txt ├── dev-requirements.txt ├── supervisord.conf ├── gunicorn_conf.py ├── manage.py ├── run.py ├── wsgi.py ├── scripts │   └── __init__.py ├── tests │   ├── __init__.py │   ├── conftest.py │   └── models │   └── __init__.py └── {{cookiecutter.app_name}} ├── __init__.py ├── app.py ├── config.py ├── errors.py ├── models │   └── __init__.py ├── templates │   └── error │   ├── 400.html │   ├── 401.html │   └── 404.html ├── utils.py └── views ├── __init__.py └── error_handler.py