From 0c2809eeea47eec7f1ff33b007e57d42f6f68f80 Mon Sep 17 00:00:00 2001 From: Louis Gallet Date: Mon, 1 Jul 2024 18:07:18 +0200 Subject: [PATCH] fix: :bug: Fix environment name --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index a6b2e82..0668296 100644 --- a/main.py +++ b/main.py @@ -88,7 +88,7 @@ if __name__ == '__main__': print("Please provide client_id, client_secret and n8n_webhook in the .env file") exit(1) app.secret_key = 'super secret key' - if os.getenv("enviroment") != "production": + if os.getenv("environment") != "production": app.run(debug=True, port="3000", host="0.0.0.0") else: app.run(debug=False, port="3000", host="0.0.0.0") \ No newline at end of file -- 2.47.2