summaryrefslogtreecommitdiffstats
path: root/main.py
blob: d4dcc7f68200496fc9a1759c4c6e5349db8f14e0 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python

from app import app, db
from models import create_tables

if __name__ == '__main__':
    db.connect_db()
    create_tables()
    app.run(host = '::')