Browse Source

increase timeout interval

master
jared 2 years ago
parent
commit
8c981d3fdd
  1. 6
      supabase/.env
  2. 2
      supabase/docker-compose.yml

6
supabase/.env

@ -39,11 +39,11 @@ PGRST_DB_SCHEMAS=public,storage,graphql_public
############
## General
SITE_URL=https://localhost:3000
SITE_URL=http://localhost:3000
ADDITIONAL_REDIRECT_URLS=
JWT_EXPIRY=3600
DISABLE_SIGNUP=false
API_EXTERNAL_URL=https://localhost:8000
API_EXTERNAL_URL=http://localhost:8000
## Mailer Config
MAILER_URLPATHS_CONFIRMATION="/auth/v1/verify"
@ -75,4 +75,4 @@ STUDIO_DEFAULT_PROJECT=app.jaredtsmith.com
STUDIO_PORT=3000
# replace if you intend to use Studio outside of localhost
SUPABASE_PUBLIC_URL=https://app.jaredtsmith.com/studio
SUPABASE_PUBLIC_URL=https://app.jaredtsmith.com

2
supabase/docker-compose.yml

@ -212,7 +212,7 @@ services:
image: supabase/postgres:14.1.0.106
healthcheck:
test: pg_isready -U postgres -h localhost
interval: 15s
interval: 30s
timeout: 15s
retries: 10
command:

Loading…
Cancel
Save