-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
42 lines (30 loc) · 1.69 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Since .env is gitignored, you can use .env.example to build a new `.env` file when you clone the repo.
# Keep this file up-to-date when you add new variables to `.env`.
# This file will be committed to version control, so make sure not to have any secrets in it.
# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.
# When adding additional env variables, the schema in /env/schema.mjs should be updated accordingly
# Prisma
# In the past, we used PlanetScale for our database. We have since migrated to Supabase.
# PLANETSCALE [LEGACY]
# Development branch
# DATABASE_URL='mysql://xxx:xxx@aws.connect.psdb.cloud/xxx?sslaccept=strict'
# PLANETSCALE [LEGACY]
# Production branch
# DATABASE_URL='mysql://xxx:xxx@aws.connect.psdb.cloud/xxx?sslaccept=strict'
# SUPABASE
DATABASE_URL='postgres://postgres.[PROJECT_ID]:[PASSWORD]@aws-0-eu-central-1.pooler.supabase.com:6543/postgres?pgbouncer=true&connection_limit=1'
# Direct connection to the database. Used for migrations.
DIRECT_URL='postgres://postgres.[PROJECT_ID]:[PASSWORD]@aws-0-eu-central-1.pooler.supabase.com:5432/postgres'
# Only for production deployment
BASE_URL=https://bucketlist.fractum.nl
TMDB_API_KEY="YOUR_SECRET_KEY"
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=[PUBLISHABLE_KEY]
CLERK_SECRET_KEY=[SECRET_KEY]
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/lists
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/lists
# Clerk Webhook Secret to create new user in the database after they sign up at Clerk
WEBHOOK_SECRET=[WEBHOOK_SECRET]
# Silence Sentry Next.js "API resolved without sending a response" warnings
SENTRY_IGNORE_API_RESOLUTION_ERRORS=1