10 lines
296 B
Python
10 lines
296 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
# @author : vincent.benoit@benserv.fr
|
|
# @brief : Backend Configurateur football-drawing
|
|
|
|
from src import app
|
|
print("Launch Flask Backend ...")
|
|
ret, application = app.create_app()
|
|
if application and ret:
|
|
application.run(host="0.0.0.0", port=6000, use_reloader=False) |