chore: prepare official supabase self-host setup

This commit is contained in:
Philipp
2026-06-09 21:48:31 +02:00
parent 310573e3ea
commit 206dc48403
7 changed files with 93 additions and 10 deletions
+9 -4
View File
@@ -8,9 +8,13 @@ WORKER_CONCURRENCY=5
CONSOLE_PROXY_ADDR=:8081
# Supabase/Postgres
DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable
SUPABASE_JWKS_URL=http://localhost:54321/auth/v1/.well-known/jwks.json
SUPABASE_ISSUER=http://localhost:54321/auth/v1
DATABASE_URL=postgres://postgres:postgres@localhost:54322/postgres?sslmode=disable
SUPABASE_URL=http://localhost:8000
SUPABASE_AUTH_EXTERNAL_URL=http://localhost:8000/auth/v1
SUPABASE_JWKS_URL=http://localhost:8000/auth/v1/.well-known/jwks.json
SUPABASE_ISSUER=http://localhost:8000/auth/v1
SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
# Redis/asynq
REDIS_ADDR=localhost:6379
@@ -21,5 +25,6 @@ MASTER_KEY_BASE64=
# Frontend
VITE_API_BASE_URL=http://localhost:8080
VITE_SUPABASE_URL=http://localhost:54321
VITE_SUPABASE_URL=http://localhost:8000
VITE_SUPABASE_ANON_KEY=
APP_SITE_URL=http://localhost:5173