Normalizes environment variable files
Updates .env files to use a consistent comment style for base URLs. This change improves readability and maintainability of the environment configuration files.
This commit is contained in:
parent
27ae87d81e
commit
d8c934fd6c
3 changed files with 16 additions and 12 deletions
|
|
@ -5,10 +5,14 @@
|
|||
NODE_ENV="qa"
|
||||
|
||||
# Base URLs by environment (uncomment the one you need)
|
||||
BASE_URL="https://www-qa2.safelite.com/" # qa
|
||||
# BASE_URL="https://www-test2.safelite.com/fmg/?fmgPage=vehicle" # sys
|
||||
# BASE_URL="https://www-dev2.safelite.com/" # dev
|
||||
# BASE_URL="https://www-dev2.safelite.com/?&experiments=LeadGenHeritage=LeadGenHeritageExp_V3=LeadGenHeritageTestV3=true" # dev with leadgen
|
||||
# qa
|
||||
BASE_URL="https://www-qa2.safelite.com/"
|
||||
# sys
|
||||
# BASE_URL="https://www-test2.safelite.com/fmg/?fmgPage=vehicle"
|
||||
# dev
|
||||
# BASE_URL="https://www-dev2.safelite.com/"
|
||||
# dev with leadgen
|
||||
# BASE_URL="https://www-dev2.safelite.com/?&experiments=LeadGenHeritage=LeadGenHeritageExp_V3=LeadGenHeritageTestV3=true"
|
||||
|
||||
# API endpoints
|
||||
CCIS_API_URL="https://api.test.belronus.io"
|
||||
|
|
|
|||
|
|
@ -5,10 +5,10 @@
|
|||
NODE_ENV="qa"
|
||||
|
||||
# Base URLs by environment (uncomment the one you need)
|
||||
BASE_URL="https://www-qa2.safelite.com/" # qa
|
||||
# BASE_URL="https://www-test2.safelite.com/fmg/?fmgPage=vehicle" # sys
|
||||
# BASE_URL="https://www-dev2.safelite.com/" # dev
|
||||
# BASE_URL="https://www-dev2.safelite.com/?&experiments=LeadGenHeritage=LeadGenHeritageExp_V3=LeadGenHeritageTestV3=true" # dev with leadgen
|
||||
BASE_URL="https://www-qa2.safelite.com/"
|
||||
# BASE_URL="https://www-test2.safelite.com/fmg/?fmgPage=vehicle"
|
||||
# BASE_URL="https://www-dev2.safelite.com/"
|
||||
# BASE_URL="https://www-dev2.safelite.com/?&experiments=LeadGenHeritage=LeadGenHeritageExp_V3=LeadGenHeritageTestV3=true"
|
||||
|
||||
# API endpoints
|
||||
CCIS_API_URL="https://api.test.belronus.io"
|
||||
|
|
|
|||
|
|
@ -7,12 +7,12 @@ NODE_ENV="dev"
|
|||
# NODE_ENV="sys"
|
||||
|
||||
# Base URLs by environment (uncomment the one you need)
|
||||
BASE_URL="https://selfservice.dev.glassclaim.com" # dev
|
||||
# BASE_URL="https://selfservice.test.glassclaim.com" # qa
|
||||
# BASE_URL="https://www-test2.safelite.com/fmg/?fmgPage=vehicle" # sys
|
||||
BASE_URL="https://selfservice.dev.glassclaim.com"
|
||||
# BASE_URL="https://selfservice.test.glassclaim.com"
|
||||
# BASE_URL="https://www-test2.safelite.com/fmg/?fmgPage=vehicle"
|
||||
|
||||
# API endpoints (uncomment to match your BASE_URL)
|
||||
CCIS_API_URL="https://api.test.belronus.io" # dev
|
||||
CCIS_API_URL="https://api.test.belronus.io"
|
||||
|
||||
# Admin service API URL
|
||||
ADMIN_SERVICE_API_URL="https://issadminapi.dev.sagaws.net/iss-admin/api/v1/"
|
||||
|
|
|
|||
Loading…
Reference in a new issue