Environment variable definitions were moved from .env.development, .env.test and .env.production to a new shared .env file. This provides a centralized location for common environment variables values, easier manageability, and overrides capability in specific environments. The .gitignore file was also updated to no longer ignore the .env file as this file now contains public / non-sensitive configuration values.
17 lines
429 B
Plaintext
17 lines
429 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
|
|
MONITORING_PROVIDER=
|
|
MONITORING_INSTRUMENTATION_ENABLED=false
|