-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (38 loc) · 2.05 KB
/
Copy path.env.example
File metadata and controls
44 lines (38 loc) · 2.05 KB
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
43
44
# Since the ".env" file is gitignored, you can use the ".env.example" file 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 environment variables, the schema in "/src/env.js"
# should be updated accordingly.
# Prisma
# https://www.prisma.io/docs/reference/database-reference/connection-urls#env
# Prefix with pgbouncer is required to work with prisma: https://github.com/orgs/supabase/discussions/17817
POSTGRES_URL=postgres://[db-user].[project-ref]:[db-password]@aws-0-[aws-region].pooler.supabase.com:6543/[db-name]?pgbouncer=true
POSTGRES_URL_NON_POOLING=postgresql://[db-user]:[password]@db.[project-ref].supabase.co:5432/[db-name]
# It is important this is at port 5432 otherwise prisma commands will hang
# https://stackoverflow.com/questions/75195830/prisma-migrate-command-gets-stuck
POSTGRES_PRISMA_URL=postgres://[db-user].[project-ref]:[db-password]@aws-0-[aws-region].pooler.supabase.com:5432/[db-name]
SUPABASE_ANON_KEY=
NEXT_PUBLIC_SUPABASE_URL=https://[project-ref].supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=
STRIPE_SECRET_KEY=sk_[live/test]_[*]
STRIPE_WEBHOOK_SECRET=whsec_[*]
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_[live/test]_[*]
POSTMARK_SERVER_API_TOKEN=
NEXT_PUBLIC_APPLICATION_URL=
# PostHog Analytics (Optional)
NEXT_PUBLIC_POSTHOG_KEY=phc_[your_key_here]
NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com
# For Taskmaster Use (see https://github.com/eyaltoledano/claude-task-master)
PERPLEXITY_API_KEY=pplx-your_key_here
ANTHROPIC_API_KEY=sk-ant-your_key_here
# Optional: Additional AI providers for TaskMaster
OPENAI_API_KEY=sk-your_openai_key_here
GOOGLE_API_KEY=your_google_key_here
MISTRAL_API_KEY=your_mistral_key_here
OPENROUTER_API_KEY=sk-or-your_key_here
XAI_API_KEY=your_xai_key_here
AZURE_OPENAI_API_KEY=your_azure_key_here
OLLAMA_API_KEY=your_ollama_key_here