Skip to content

aymenhta/create-flask-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

create-flask-app

a cli tool that scaffolds a flask application

examples

the following command generate a blog web app:

$ python main.py -o blog -d . -b post auth account dashboard
./blog/
├── core
│   ├── account
│   │   ├── forms.py
│   │   ├── __init__.py
│   │   ├── routes.py
│   │   └── templates
│   │       └── account
│   │           └── index.html
│   ├── auth
│   │   ├── forms.py
│   │   ├── __init__.py
│   │   ├── routes.py
│   │   └── templates
│   │       └── auth
│   │           └── index.html
│   ├── config.py
│   ├── dashboard
│   │   ├── forms.py
│   │   ├── __init__.py
│   │   ├── routes.py
│   │   └── templates
│   │       └── dashboard
│   │           └── index.html
│   ├── exts.py
│   ├── __init__.py
│   ├── models.py
│   ├── post
│   │   ├── forms.py
│   │   ├── __init__.py
│   │   ├── routes.py
│   │   └── templates
│   │       └── post
│   │           └── index.html
│   ├── static
│   │   ├── css
│   │   │   └── main.css
│   │   └── js
│   │       └── main.js
│   ├── templates
│   │   ├── about.html
│   │   └── base.html
│   └── utils.py
├── requirements.txt
└── run.py

17 directories, 27 files

About

a tool to help me scaffold a flask application

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages