correction du lanceur d'application en prod
This commit is contained in:
@@ -8,6 +8,6 @@ from ConfBack.config import ProdConfig
|
|||||||
from waitress import serve
|
from waitress import serve
|
||||||
|
|
||||||
print("Launch Flask KineIntercom Backend ...")
|
print("Launch Flask KineIntercom Backend ...")
|
||||||
application = app.create_app(config=ProdConfig)
|
ret, application = app.create_app(config=ProdConfig)
|
||||||
if application:
|
if ret:
|
||||||
serve(application, host="127.0.0.1", port=6000)
|
serve(application, host="127.0.0.1", port=6000)
|
||||||
|
|||||||
Reference in New Issue
Block a user