From c851865728c51f0de855bf7dbf4b09b1f227e930 Mon Sep 17 00:00:00 2001 From: mrtoine Date: Sat, 20 Sep 2025 14:35:04 +0200 Subject: [PATCH] ajout du port dans le .env --- backend/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app.py b/backend/app.py index 671cdfa..34ff584 100644 --- a/backend/app.py +++ b/backend/app.py @@ -29,4 +29,4 @@ app.register_blueprint(cv_bp) app.register_blueprint(services_bp) if __name__ == '__main__': - app.run(debug=True, port=5000) \ No newline at end of file + app.run(debug=os.getenv("APP"), port=os.getenv("PORT")) \ No newline at end of file