Metadata-Version: 2.1
Name: flask_template
Version: 0.4.2
Summary: Flask Project Template
Home-page: https://github.com/
Author: YIMIAN INC.
Author-email: zhangjinjie@yimian.com.cn
License: MIT
Description: # flask_template
        
        templates used to fast create flask project.
        
        ## install
        
        `pip install flask_template`
        
        
        # usage
        
        `flasktemplate create [-t simple] project_name`
        
        will create a flask project directory named after project_name on current path.
        
        `flasktemplate list` will list current supported templates.
        
        normal project initial usage flow:
        1. `cd {project_name}`
        2. `pyenv virtualenv {python_version} {virtualenv_name}`
        3. `pyenv activate {virtualenv_name}`
        4. modify `SQLALCHEMY_DATABASE_URI` with correct database account and database name
        5. design and develop models and migrate, apply them into database with:
            1. `python manage.py db migrate`
            2. `python manage.py db upgrade`
        6. design develop apis
        
        # update logs
        
        ## 0.4.2
        1. update requirements
        2. fix bugs
        
        ## 0.4.1
        
        1. modify config.py;
        
        2. format by pycodestyle;
        
        ## 0.4
        
        1. add migrations directory，modify env.py script to support alembic:include, alembic:exclude 
        options in alembic.ini to limit alembic dectecting tables;
        
        2. fix some typo；
        
Keywords: flask development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test
