39 lines
655 B
TOML
39 lines
655 B
TOML
# Supabase local development configuration
|
|
# This file is used by `supabase start` for local development
|
|
|
|
project_id = "pascal-editor"
|
|
|
|
[api]
|
|
enabled = true
|
|
port = 54321
|
|
schemas = ["public"]
|
|
extra_search_path = ["public"]
|
|
max_rows = 1000
|
|
|
|
[db]
|
|
port = 54322
|
|
shadow_port = 54320
|
|
major_version = 17
|
|
|
|
[studio]
|
|
enabled = true
|
|
port = 54323
|
|
|
|
[inbucket]
|
|
enabled = true
|
|
port = 54324
|
|
smtp_port = 54325
|
|
pop3_port = 54326
|
|
|
|
[auth]
|
|
enabled = true
|
|
site_url = "http://localhost:3000"
|
|
additional_redirect_urls = ["http://localhost:3000"]
|
|
jwt_expiry = 3600
|
|
enable_signup = true
|
|
|
|
[auth.email]
|
|
enable_signup = true
|
|
double_confirm_changes = false
|
|
enable_confirmations = false
|