From 1628c445d2fcad7be7af9fb5588e9ce969ceb9ae Mon Sep 17 00:00:00 2001 From: Julien Nahum Date: Thu, 22 May 2025 11:48:36 +0200 Subject: [PATCH] Update Environment Configuration for Production Deployment - Changed the `APP_ENV` variable in the `.env.docker` file from `local` to `production`, aligning the environment settings with the deployment requirements for the production environment. This change is essential for ensuring that the application runs with the appropriate configurations and optimizations for a live setting. This update aims to facilitate a smoother transition to production by ensuring the correct environment variables are set. --- api/.env.docker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/.env.docker b/api/.env.docker index e3156a35..3f2825f5 100644 --- a/api/.env.docker +++ b/api/.env.docker @@ -1,5 +1,5 @@ APP_NAME="OpnForm" -APP_ENV=local +APP_ENV=production APP_KEY= APP_DEBUG=false APP_URL=http://localhost