5 lines
112 B
Python
5 lines
112 B
Python
from dmweb import create_app
|
|
|
|
app = create_app()
|
|
app.run(host="0.0.0.0", debug=True, threaded=True, port=10000)
|