8 lines
154 B
Python
Executable file
8 lines
154 B
Python
Executable file
#!/usr/bin/python3
|
|
|
|
from sourcing import create_app
|
|
|
|
if __name__ == "__main__":
|
|
app = create_app("config.default")
|
|
app.run("0.0.0.0", debug=True)
|