-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy path.env.example
More file actions
51 lines (43 loc) · 1.55 KB
/
.env.example
File metadata and controls
51 lines (43 loc) · 1.55 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
45
46
47
48
49
50
51
# Drizzle
DATABASE_URL="postgresql://root:mysecretpassword@localhost:5432/local"
# Better Auth
# You can generate a new secret on the command line with:
# openssl rand -base64 32
# https://next-auth.js.org/configuration/options#secret
BETTER_AUTH_SECRET="not-a-real-secret-just-for-ci-build"
AUTH_SECRET="not-a-real-secret-just-for-ci-build"
# Stripe
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY="pk_test_fake_000000000000000000000000"
STRIPE_SECRET_KEY="sk_test_fake_000000000000000000000000"
STRIPE_SECRET_WEBHOOK_KEY="whsec_fake_000000000000000000000000"
# Discord
DISCORD_BOT_TOKEN="discord-bot-token"
DISCORD_CLIENT_ID="discord-client-id"
DISCORD_CLIENT_SECRET="discord-client-secret"
DISCORD_WEATHER_API_KEY="discord-weather-api-key"
DISCORD_WEBHOOK_ANIMAL=""
DISCORD_WEBHOOK_LEETCODE="discord-webhook-leetcode"
DISCORD_WEBHOOK_REMINDERS="discord-webhook-reminders"
DISCORD_WEBHOOK_REMINDERS_HACK="discord-webhook-reminders-hack"
DISCORD_WEBHOOK_REMINDERS_PRE="discord-webhook-reminders-pre"
# Google
GOOGLE_PRIVATE_KEY_B64="google-private-key-b64"
GOOGLE_CLIENT_EMAIL="google-client-email"
# Minio
MINIO_ENDPOINT="localhost"
MINIO_ACCESS_KEY="minioadmin"
MINIO_SECRET_KEY="minioadmin"
# Blade URL
BLADE_URL="http://localhost:3000"
# Passkit
WWDR_CERT_BASE64="wwdr-cert-b64"
SIGNER_CERT_BASE64="signer-cert-b64"
SIGNER_KEY_BASE64="signer-key-b64"
SIGNER_KEY_PASS_BASE64="signer-key-pass-b64"
PASS_TYPE_IDENTIFIER="pass-type-identifier"
TEAM_IDENTIFIER="team-identifier"
#Listmonk
LISTMONK_URL="https://localhost/"
LISTMONK_USER="ci"
LISTMONK_TOKEN="ci"
LISTMONK_FROM_EMAIL="ci@localhost"