mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 08:56:46 -04:00
f58eead769
Our environment variables are a bit of a mess, so cleaning them up: - We have duplicate environment variables that resolve to the same thing but just have different names, deduplicating all of these - We have a .env.development (for publicly safe variables) and a .env.example, we really only need one - Privately, we have a .env (for running scripts) and a .env.local (for Next.js). Changing the dotenv source for scripts, so again we only need one
19 lines
1.1 KiB
Bash
19 lines
1.1 KiB
Bash
# IMPORTANT: This file is checked into version control.
|
|
# Only publicly available environment variables should be listed here.
|
|
# Do not add secrets here. Use .env.local instead.
|
|
|
|
NEXT_PUBLIC_SITE_URL="http://localhost:3001"
|
|
NEXT_PUBLIC_BASE_PATH="/docs"
|
|
|
|
# Whether to enable features available only on Supabase's own hosted services
|
|
# Setting this to true requires certain secret keys
|
|
NEXT_PUBLIC_IS_PLATFORM="false"
|
|
|
|
# Supabase project containing integration information
|
|
NEXT_PUBLIC_MISC_URL="https://obuldanrptloktxcffvn.supabase.co"
|
|
NEXT_PUBLIC_MISC_ANON_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im9idWxkYW5ycHRsb2t0eGNmZnZuIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MTg2MTQ2ODUsImV4cCI6MjAzNDE5MDY4NX0.NFt49g6DFkc1X5khCzN5p01iAVo2TMxlx88cY1V0E2M"
|
|
|
|
# Supabase project containing docs content information
|
|
NEXT_PUBLIC_SUPABASE_URL="https://xguihxuzqibwxjnimxev.supabase.co"
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InhndWloeHV6cWlid3hqbmlteGV2Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MTgzNzc1MTgsImV4cCI6MjAzMzk1MzUxOH0.aIqjQ9V7djMxYit-DT1fYNV_VWMHSqldh_18XfX2_BE"
|