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