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