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__":
2023-08-25 21:42:13 +01:00
app = create_app("config.default")
app.run("0.0.0.0", debug=True)