project_name1
==============
Uses Python 3.4.2

Create virtualenv:
```
pyvenv-3.4 env
source env/bin/activate
```

Install packages:
```
pip install -r requirements.txt
pip install -r requirements-dev.txt
```

Run deployed server:
```
python application.py
```

Run local dev server:
```
python dev.py
```

Test endpoints:
```
curl localhost:5000
curl localhost:5000/hello
```