B-tronics / init_flask

Initialise Flask Project Structure

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Init Flask

A simple package, to initialise Flask project file structure.

Installation

After cloning the repo, use package manager pip to install init_flask:

pip install -e init_flask

Usage

python -m init_flask -n <project_name>

Structure

├── project/
│   ├── __init__.py
│   ├── db.py
│   ├── schema.sql
│   ├── auth.py
│   ├── templates/
│   │   ├── base.html
│   │   ├── auth/
│   │   │   ├── login.html
│   │   │   └── register.html
│   └── static/
│       └── style.css
├── tests/
│   ├── conftest.py
│   ├── data.sql
├── setup.py
└── MANIFEST.in

About

Initialise Flask Project Structure

License:MIT License


Languages

Language:Python 100.0%