Heroku: https://restosapi.herokuapp.com/
# go to python repl
$ python
# from python repl then fire up db
>>> from app import db
>>> db.create_all()
# fill in data
>>> from json_to_db import db
>>> db.create_all()
>>> exit()
# run the app
$ python app.py