6 lines
136 B
Python
6 lines
136 B
Python
# -*- coding: utf-8 -*-
|
|
from dmweb import create_app
|
|
|
|
app = create_app()
|
|
app.run(host="0.0.0.0", debug=True, threaded=True, port=10000)
|