summaryrefslogtreecommitdiffstats
path: root/webapp/run.py
blob: b5c8c6f200ab551272488bd7fc2e82aaddcbfb45 (plain) (blame)
1
2
3
4
5
6
7
#!/usr/bin/env python

import sys
sys.path.append('packages')

from app import app
app.run(threaded=True, host='', port=8000)