33 lines
988 B
Plaintext
33 lines
988 B
Plaintext
# When adding additional environment variables, the schema in "/src/env.js"
|
|
# should be updated accordingly.
|
|
|
|
# Example:
|
|
# SERVERVAR="foo"
|
|
# NEXT_PUBLIC_CLIENTVAR="bar"
|
|
|
|
### Server Variables ###
|
|
# Next Variables # Default Values:
|
|
#NODE_ENV= # development
|
|
#SKIP_ENV_VALIDATION= # false
|
|
#NEXT_RUNTIME= # nodejs
|
|
# Sentry Variables # Default Values:
|
|
#SENTRY_URL= # https://sentry.gbrown.org
|
|
SENTRY_AUTH_TOKEN=
|
|
#CI= # true
|
|
|
|
### Client Variables ###
|
|
# Next Variables # Default Values:
|
|
#NEXT_PUBLIC_SITE_URL= # http://localhost:3000
|
|
# Supabase Variables
|
|
NEXT_PUBLIC_SUPABASE_URL=
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY=
|
|
# Sentry Variables
|
|
NEXT_PUBLIC_SENTRY_DSN=
|
|
|
|
### Script Variables ### These variables are only needed for our scripts, so do not add these to env.js! ###
|
|
# generateTypes # Default Values:
|
|
SUPABASE_DB_PASSWORD=
|
|
#SUPABASE_DB_PORT= # 5432
|
|
#SUPABASE_DB_USER= # postgres
|
|
#SUPABASE_DB_NAME= # postgres
|