You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
python (Tested on 3.6.6 . For 2.x.x, requirements and some 'import' could be changed)
cookiecutter (pip install cookiecutter)
Usage
Method 1 using remote url
> cookiecutter https://github.com/rohitchormale/cookiecutter-flask
project_slug [myproject]: /opt/fooproject (Enter new project name with proper path. If empty 'myproject' will be used with current directory)
author[]: John Smith( Enter author name. If empty, empty string will be used)
> cd <project-path>
> flask run
Method 2 from source
> git clone https://github.com/rohitchormale/cookiecutter-flask
> cookiecutter <absolute-path-to-cloned-repo>
project_slug [myproject]: /opt/fooproject (Enter new project name with proper path. If empty 'myproject' will be used with current directory)
author[]: John Smith( Enter author name. If empty, empty string will be used)
> cd <project-path>
> flask run