-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
47 lines (37 loc) · 1013 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
35
36
37
38
39
40
41
42
43
44
45
46
47
# When adding additional environment variables, the schema in "/src/env.js"
# should be updated accordingly.
# Needed for server side API calls
NEXT_PUBLIC_SITE_URL="http://localhost:3000"
API_BASE_URL="http://localhost:3000/api"
# Prisma
DATABASE_URL="mysql://"
# Auth
KINDE_CLIENT_ID=""
KINDE_CLIENT_SECRET=""
KINDE_ISSUER_URL="https://chesstrainingapp.kinde.com"
KINDE_SITE_URL="http://localhost:3000"
KINDE_POST_LOGOUT_REDIRECT_URL="http://localhost:3000"
KINDE_POST_LOGIN_REDIRECT_URL="http://localhost:3000/dashboard"
KINDE_AUDIENCE="https://chesstrainingapp.kinde.com/api"
# Analytics and features
NEXT_PUBLIC_POSTHOG_KEY=""
NEXT_PUBLIC_POSTHOG_HOST=""
# Puzzles API
RAPIDAPI_KEY=""
# Sentry
SENTRY_AUTH_TOKEN=""
# Brevo
SMTP_HOST="ssmtp-relay."
SMTP_PORT="587"
SMTP_USER="@chesstraining.app"
SMTP_PASS=""
BREVO_API_KEY=""
# Frigrade
FRIGADE_API_KEY=""
# Stripe
STRIPE_PUBLIC_KEY=""
STRIPE_SECRET_KEY=""
STRIPE_WEBHOOK_SECRET=""
# Premium Settings
NEXT_PUBLIC_MAX_COURSES=2
NEXT_PUBLIC_MAX_SETS=2