sourcing/run.py

8 lines
154 B
Python
Raw Normal View History

2017-01-30 10:22:05 +00:00
#!/usr/bin/python3
from sourcing import create_app
if __name__ == "__main__":
app = create_app('config.default')
app.run('0.0.0.0', debug=True)