# Hackathon Sync

Setup config vars:
```
export SYNC_DB_URL=mysql+mysqlconnector://<user>:<password>@<host>/<table>
```

Uses Python 3.4.2

Use virtualenv:
```
pyvenv env
source env/bin/activate
```

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

Running the server:
```
python application.py
```

Running the server for DEV:
```
python dev.py
```