chore: setup some example schema to play around

This commit is contained in:
Peter 2025-01-21 08:53:10 +01:00
parent 39a262dd34
commit ef8f3471ab
Signed by: prskr
GPG key ID: F56BED6903BC5E37
7 changed files with 322 additions and 0 deletions
internal/supabase

View file

@ -116,6 +116,7 @@ type studioEnvKeys struct {
AnonKey secretEnv
ServiceKey secretEnv
Host fixedEnv
LogsEnabled fixedEnv
}
type studioDefaults struct {
@ -250,6 +251,7 @@ var ServiceConfig = struct {
AnonKey: "SUPABASE_ANON_KEY",
ServiceKey: "SUPABASE_SERVICE_KEY",
Host: fixedEnvOf("HOSTNAME", "0.0.0.0"),
LogsEnabled: fixedEnvOf("NEXT_PUBLIC_ENABLE_LOGS", "true"),
},
Defaults: studioDefaults{
NodeUID: 1000,