From bd39d5da0b9593a603554af9c8cf252e7591acdd Mon Sep 17 00:00:00 2001 From: Swifty Date: Wed, 25 Sep 2024 13:53:11 +0200 Subject: [PATCH] fix(platform): Update Backend .env.example BACKEND_CORS_ALLOW_ORIGINS to be a list (#8163) updated to list --- autogpt_platform/backend/.env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt_platform/backend/.env.example b/autogpt_platform/backend/.env.example index e74c5887e636..6b704e77fef8 100644 --- a/autogpt_platform/backend/.env.example +++ b/autogpt_platform/backend/.env.example @@ -5,7 +5,7 @@ DB_PORT=5432 DATABASE_URL="postgresql://${DB_USER}:${DB_PASS}@localhost:${DB_PORT}/${DB_NAME}?connect_timeout=60&schema=platform" PRISMA_SCHEMA="postgres/schema.prisma" -BACKEND_CORS_ALLOW_ORIGINS="http://localhost:3000" +BACKEND_CORS_ALLOW_ORIGINS=["http://localhost:3000"] REDIS_HOST=localhost REDIS_PORT=6379