* using slack clone to test * updates auth functions to handle new GUC commands * move postgREST to new version * testing with todo list * makeing our mount setup far more robust * Adds some usage commands * cleans up the auth functions * test with todos app * fix env var for GUC * new auth functions - changed for performance improvement * Adds some integration tests for RLS * anon volume on postgres * remove unused helpers * fix broken docusaurus build * Fix complaining vercel * test instructions * Use named imports * Fixes imports * all relative * chore: add in tsconfig.json to /web * finding these all over the place * Update docker/docker-compose.yml Co-authored-by: Steve Chavez <stevechavezast@gmail.com> Co-authored-by: Jonathan Summers-Muir <MildTomato@users.noreply.github.com> Co-authored-by: Steve Chavez <stevechavezast@gmail.com>
36 lines
654 B
Plaintext
36 lines
654 B
Plaintext
# Secrets
|
|
|
|
POSTGRES_PASSWORD=your-super-secret-and-long-postgres-password
|
|
JWT_SECRET=your-super-secret-jwt-token-with-at-least-32-characters-long
|
|
|
|
# Auth
|
|
|
|
## General
|
|
SITE_URL=http://localhost:3000
|
|
ADDITIONAL_REDIRECT_URLS=
|
|
JWT_EXPIRY=3600
|
|
DISABLE_SIGNUP=false
|
|
|
|
## Email auth
|
|
ENABLE_EMAIL_SIGNUP=true
|
|
ENABLE_EMAIL_AUTOCONFIRM=true
|
|
SMTP_ADMIN_EMAIL=admin@example.com
|
|
SMTP_HOST=mail
|
|
SMTP_PORT=2500
|
|
SMTP_USER=fake_mail_user
|
|
SMTP_PASS=fake_mail_password
|
|
SMTP_SENDER_NAME=fake_sender
|
|
|
|
## Phone auth
|
|
ENABLE_PHONE_SIGNUP=false
|
|
ENABLE_PHONE_AUTOCONFIRM=false
|
|
|
|
# Ports
|
|
|
|
## API endpoint ports
|
|
KONG_HTTP_PORT=8000
|
|
KONG_HTTPS_PORT=8443
|
|
|
|
## DB port
|
|
POSTGRES_PORT=5432
|