Initial commit

This commit is contained in:
Yusur 2019-05-01 15:33:28 +02:00
commit c33a74711c
15 changed files with 606 additions and 0 deletions

8
run_example.py Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env python
import sys
sys.path.insert(0, '../..')
from app import app, create_tables
create_tables()
app.run()