Metadata-Version: 2.0
Name: flaskscaffold
Version: 0.8
Summary: Initializing project structure for flask applications.
Home-page: https://github.com/karolosk/flask-scaffold
Author: KarolosK
Author-email: karolos.koutsoulelos@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/x-rst

===============
Flask Scaffold
===============
Package to create scaffolds for flask projects.

Installing
==========

To install the regular library without async support, just run the following command::

  pip install flaskscaffold


Usage
=====

To use simply create a directory for your project and then in the directory::

  flaskscaffold-create

This will create the below folder structure:

::

    my_project
    ├── app.py
    ├── db.py
    ├── .gitignore
    ├── models         
    │   └── __init__.py
    ├── services         
    │   └── __init__.py
    ├── controllers         
    │   └── __init__.py
    ├── static
    ├── templates
    └── tests


In addition to the file structure, boilerplate app.py and .gitignore is added.

