-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
31 lines (20 loc) · 995 Bytes
/
.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
# 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.
# The database URL is used to connect to your Supabase database.
POSTGRES_URL="postgresql://postgres:postgres@localhost:5432/postgres"
ISBN_DB_API_KEY="123"
TRIGGER_SECRET_KEY="123"
OPENAI_API_KEY="sk-123"
GOOGLE_GENERATIVE_AI_API_KEY="123"
AUTH_SECRET="123"
AUTH_RESEND_KEY="123"
SUPABASE_MEDIA_BUCKET="media"
SUPABASE_URL="http://localhost:54321"
NEXT_PUBLIC_SUPABASE_URL="http://localhost:54321"
SUPABASE_ANON_KEY="123"
NEXT_PUBLIC_POSTHOG_KEY=123
OTEL_EXPORTER_OTLP_HEADERS="x-api-key=123"
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT="http://localhost:4317"
OTEL_EXPORTER_OTLP_LOGS_ENDPOINT="http://localhost:4317"