-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.env.example
45 lines (35 loc) · 1.17 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
43
44
45
NEXT_PUBLIC_APP_NAME="APP_NAME"
NEXT_PUBLIC_APP_DOMAIN="http://localhost:3000"
MONGODB_URI="mongodb://localhost:27017/pulse-db"
DATABASE_NAME="DATABASE_NAME"
# Linux: `openssl rand -hex 32` or go to https://generate-secret.vercel.app/32
AUTH_SECRET=
AUTH_GITHUB_ID=
AUTH_GITHUB_SECRET=
AUTH_GOOGLE_ID=
AUTH_GOOGLE_SECRET=
AUTH_SLACK_ID=
AUTH_SLACK_SECRET=
EMAIL_SERVER_USER=
EMAIL_SERVER_PASSWORD=
# Used for internal monitoring & paging
# You can remove this by removing `ORGNISE_SLACK_HOOK_ALERTS` ,`ORGNISE_SLACK_HOOK_NEW_TEAM` and `ORGNISE_SLACK_HOOK_ERRORS` from the codebase
ORGNISE_SLACK_HOOK_ALERTS=
ORGNISE_SLACK_HOOK_ERRORS=
ORGNISE_SLACK_HOOK_NEW_TEAM=
# Storage
STORAGE_ACCESS_KEY_ID=
STORAGE_SECRET_ACCESS_KEY=
STORAGE_ENDPOINT=
# Stripe for payments
# https://dashboard.stripe.com/apikeys
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
STRIPE_SECRET_KEY=
# Set this environment variable to support webhooks — https://stripe.com/docs/webhooks#verify-events
STRIPE_WEBHOOK_SECRET=
# Paddle for payments
# https://developer.paddle.com/api-reference/about/authentication#generate-authentication
PADDLE_ENV='sandbox'
PADDLE_SECRET_CLIENT_KEY=
PADDLE_SERVER_SECRET_KEY=
PADDLE_WEBHOOK_SECRET=