Cookiecutter template for flask-eb boilerplate project
======================================================

This is a proof of concept cookiecutter template for generating
a flask-eb project. It can be improved and customized futher.

https://cookiecutter.readthedocs.io/

### Install cookiecutter

```
pyvenv env
source env/bin/activate
pip install cookiecutter
```

### Running cookiecutter

First, copy `flask-eb-cookiecutter` directory to your machine. Then cd to the directory where you want to create your generated project.

```
cd ~/sources
cookiecutter ~/path/to/flask-eb-cookiecutter
```

Answer the questions, and your project is ready to go.

### Running cookiecutter directly from git repo

The most convenient way to use a template will be to create a separate github repo for the template.
Then you will not have to manually copy the templates to your machine. You will be able to use a cookicutter command directly.

```
cookiecutter git+ssh://git@github.com/theorchard/cookiecutter-flask-eb.git
```