17 lines
219 B
Python
17 lines
219 B
Python
from backend import create_app
|
|
|
|
app = create_app()
|
|
|
|
|
|
def debug():
|
|
app.run(
|
|
host="127.0.0.1",
|
|
port=8080,
|
|
debug=True,
|
|
use_reloader=False,
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
debug()
|