-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 1.13 KB
/
Copy path.env.example
File metadata and controls
29 lines (25 loc) · 1.13 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
VITE_APP_URL=http://localhost:3000
VITE_POSTHOG_HOST= #optional
VITE_POSTHOG_PUBLIC_KEY= #optional - leave undefined for local development
POSTHOG_HOST= #optional - defaults to VITE_POSTHOG_HOST or https://us.i.posthog.com
POSTHOG_PROJECT_TOKEN= #optional - project token starting with phc_, used for server logs
# PRIVATE SECRETS
DATABASE_URL= #https://neon.tech
UPLOADTHING_TOKEN= #https://uploadthing.com
## AUTH
AUTH_SECRET= #https://www.better-auth.com/docs/installation#set-environment-variables
GOOGLE_OAUTH_ID= #https://console.cloud.google.com/auth/clients
GOOGLE_OAUTH_SECRET= #https://console.cloud.google.com/auth/clients
GITHUB_OAUTH_ID= #https://docs.github.com/en/apps/creating-github-apps/registering-a-github-app/registering-a-github-app
GITHUB_OAUTH_SECRET=
## STRIPE
STRIPE_WEBHOOK_SECRET= #https://dashboard.stripe.com > Workbench > Webhooks
STRIPE_SECRET_KEY=
STRIPE_PRICE_PRO_YEARLY= # Stripe Price ID, starts with price_
# EMAIL
SMTP_HOST=localhost
SMTP_PORT=2465
SMTP_USER= #<any-string> | 'resend'
SMTP_PASSWORD= #undefined | https://resend.com/api-keys
SMTP_SECURE= #undefined | true
EMAIL_FROM='Form Owl <no-reply@birdy.dev>'