Environment variables in multiple files have been updated to correctly reference public variables. Moreover, the conditional check for MONITORING_INSTRUMENTATION_ENABLED has been corrected to explicitly check for the string 'true'. This change ensures that our application correctly accesses public environmental variables and behaves as expected under the conditions defined by these variables.
17 lines
441 B
Plaintext
17 lines
441 B
Plaintext
# PRODUCTION ENVIRONMENT VARIABLES
|
|
|
|
## DO NOT ADD VARS HERE UNLESS THEY ARE PUBLIC OR NOT SENSITIVE
|
|
## THIS ENV IS USED FOR PRODUCTION AND IS COMMITED TO THE REPO
|
|
## AVOID PLACING SENSITIVE DATA IN THIS FILE.
|
|
## PUBLIC KEYS OR CONFIGURATION ARE OKAY TO BE PLACED HERE.
|
|
|
|
# SUPABASE
|
|
NEXT_PUBLIC_SUPABASE_URL=
|
|
|
|
# STRIPE
|
|
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
|
|
|
|
# MONITORING
|
|
NEXT_PUBLIC_MONITORING_PROVIDER=
|
|
MONITORING_INSTRUMENTATION_ENABLED=false
|