############ # Database - You can change these to any PostgreSQL database that has logical replication enabled. ############
POSTGRES_HOST=db POSTGRES_DB=postgres POSTGRES_PORT=5432 # default user is postgres
############ # Supavisor -- Database pooler ############ # Port Supavisor listens on for transaction pooling connections POOLER_PROXY_PORT_TRANSACTION=6543 # Maximum number of PostgreSQL connections Supavisor opens per pool POOLER_DEFAULT_POOL_SIZE=20 # Maximum number of client connections Supavisor accepts per pool POOLER_MAX_CLIENT_CONN=100 # Unique tenant identifier POOLER_TENANT_ID=your-tenant-id # Pool size for internal metadata storage used by Supavisor # This is separate from client connections and used only by Supavisor itself POOLER_DB_POOL_SIZE=5
############ # API Proxy - Configuration for the Kong Reverse proxy. ############
KONG_HTTP_PORT=8000 KONG_HTTPS_PORT=8443
############ # API - Configuration for PostgREST. ############
PGRST_DB_SCHEMAS=public,storage,graphql_public
############ # Auth - Configuration for the GoTrue authentication server. ############
## General SITE_URL=http://localhost:3000 ADDITIONAL_REDIRECT_URLS= JWT_EXPIRY=3600 DISABLE_SIGNUP=false API_EXTERNAL_URL=http://localhost:8000
# replace if you intend to use Studio outside of localhost SUPABASE_PUBLIC_URL=http://localhost:8000
# Enable webp support IMGPROXY_ENABLE_WEBP_DETECTION=true
# Add your OpenAI API key to enable SQL Editor Assistant OPENAI_API_KEY=
############ # Functions - Configuration for Functions ############ # NOTE: VERIFY_JWT applies to all functions. Per-function VERIFY_JWT is not supported yet. FUNCTIONS_VERIFY_JWT=false
############ # Logs - Configuration for Analytics # Please refer to https://supabase.com/docs/reference/self-hosting-analytics/introduction ############
# Change vector.toml sinks to reflect this change # these cannot be the same value LOGFLARE_PUBLIC_ACCESS_TOKEN=your-super-secret-and-long-logflare-key-public LOGFLARE_PRIVATE_ACCESS_TOKEN=your-super-secret-and-long-logflare-key-private
# Docker socket location - this value will differ depending on your OS DOCKER_SOCKET_LOCATION=/var/run/docker.sock
# Google Cloud Project details GOOGLE_PROJECT_ID=GOOGLE_PROJECT_ID GOOGLE_PROJECT_NUMBER=GOOGLE_PROJECT_NUMBER