9 lines
124 B
Python
9 lines
124 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
|
||
|
|
import sys
|
||
|
|
sys.path.insert(0, '../..')
|
||
|
|
|
||
|
|
from app import app, create_tables
|
||
|
|
create_tables()
|
||
|
|
app.run()
|