Skip to content

dodoru/flask_app_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flask_app_template

A flask template for cookiecutter.

基本目录树和很接近这本书 <Flask Web开发:基于Python的Web应用开发实战> https://book.douban.com/subject/26274202/

Usage

$ 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

About

flask app template with blueprint

Resources

Stars

Watchers

Forks

Packages

No packages published