9 lines
419 B
Bash
9 lines
419 B
Bash
DB_USER=postgres
|
|
DB_PASS=your-super-secret-and-long-postgres-password
|
|
DB_NAME=postgres
|
|
DB_PORT=5432
|
|
DATABASE_URL="postgresql://${DB_USER}:${DB_PASS}@localhost:${DB_PORT}/${DB_NAME}?connect_timeout=60&schema=market"
|
|
SENTRY_DSN=https://11d0640fef35640e0eb9f022eb7d7626@o4505260022104064.ingest.us.sentry.io/4507890252447744
|
|
|
|
ENABLE_AUTH=true
|
|
SUPABASE_JWT_SECRET=our-super-secret-jwt-token-with-at-least-32-characters-long |