-
Notifications
You must be signed in to change notification settings - Fork 26
/
.env.example
34 lines (29 loc) · 952 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
31
32
33
34
# Used to redirect to /dashboard after sign in
CLERK_SIGN_IN_FALLBACK_REDIRECT_URL=/dashboard
CLERK_SIGN_UP_FALLBACK_REDIRECT_URL=/dashboard
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/signin
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/signup
######################################################
# Everything below is required for Local Development #
######################################################
# Copy from Stripe Dashboard in Test Mode
STRIPE_SECRET_KEY=
# Copy from Stripe CLI after running `pnpm run stripe:webhooks`
STRIPE_WEBHOOK_SECRET=
# Copy from Clerk after creating an application
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
# Copy from Vercel Postgres connection string
POSTGRES_URL=
POSTGRES_URL_NO_SSL=
POSTGRES_URL_NON_POOLING=
POSTGRES_USER=
POSTGRES_HOST=
POSTGRES_PASSWORD=
POSTGRES_DATABASE=
# Copy from Anthropic Dashboard Settings
ANTHROPIC_API_KEY=
# Copy from Github Settings
GITHUB_TOTP_SECRET=
GITHUB_USERNAME=
GITHUB_PASSWORD=