From c3a03f7163bba9136b078facc02f4691c220fdd9 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sun, 17 Nov 2024 14:06:31 -0500 Subject: [PATCH] chore: Update environment variables for self-hosted deployment --- .env | 1 + .env.development | 3 ++- .env.selfhosted | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.env b/.env index 29ce2e6..63e92e2 100644 --- a/.env +++ b/.env @@ -1,3 +1,4 @@ VITE_APP_API_URL=http://localhost:2021 VITE_IS_LANDING_DEFAULT=false VITE_OPENREPLAY_PROJECT_KEY= +VITE_IS_SELF_HOSTED=false \ No newline at end of file diff --git a/.env.development b/.env.development index d19eccf..07d358f 100644 --- a/.env.development +++ b/.env.development @@ -1,3 +1,4 @@ VITE_APP_API_URL=http://localhost:2021 VITE_APP_REDIRECT_URL=http://localhost:5173 -VITE_APP_GOOGLE_CLIENT_ID=USE_YOUR_OWN_CLIENT_ID \ No newline at end of file +VITE_APP_GOOGLE_CLIENT_ID=USE_YOUR_OWN_CLIENT_ID +VITE_IS_SELF_HOSTED=true \ No newline at end of file diff --git a/.env.selfhosted b/.env.selfhosted index f1d1a63..bcf4ec9 100644 --- a/.env.selfhosted +++ b/.env.selfhosted @@ -1,3 +1,4 @@ VITE_APP_API_URL= VITE_APP_REDIRECT_URL=http://localhost:5173 -VITE_APP_GOOGLE_CLIENT_ID=USE_YOUR_OWN_CLIENT_ID \ No newline at end of file +VITE_APP_GOOGLE_CLIENT_ID=USE_YOUR_OWN_CLIENT_ID +VITE_IS_SELF_HOSTED=true \ No newline at end of file