Setup instructions:
pip install -r requirements.txt
brew install postgres
initdb -D /usr/local/pgsql/data
pg_ctl -D /usr/local/pgsql/data -l logfile start
createdb namely
psql -c "CREATE ROLE local_user SUPERUSER LOGIN CREATEDB CREATEROLE REPLICATION;"
psql -c "GRANT ALL PRIVILEGES ON DATABASE namely TO local_user;"
psql namely < schema.sql
python run.py