forked from vercel/virtual-event-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.local.example
56 lines (44 loc) · 1.82 KB
/
.env.local.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
48
49
50
51
52
53
54
55
56
# 100ms Token generation endpoint
NEXT_PUBLIC_HMS_TOKEN_ENDPOINT=
# Allows you to view CMS seed data
DATOCMS_READ_ONLY_API_TOKEN=
# If you’d like to enable GitHub OAuth, fill these below
NEXT_PUBLIC_GITHUB_OAUTH_CLIENT_ID=
GITHUB_OAUTH_CLIENT_SECRET=
# To test GitHub OAuth locally, set NEXT_PUBLIC_SITE_ORIGIN as http://localhost:3000
NEXT_PUBLIC_SITE_ORIGIN=http://localhost:3000
# If you’d like to use a Redis database to store user data in the API routes,
# fill these below. See: lib/db-providers/redis.ts
REDIS_PORT=
REDIS_URL=
REDIS_PASSWORD=
REDIS_SSL_ENABLED=
# If you’d like to use a Supabase to store user data in the API routes,
# fill these below. See: lib/db-providers/supabase.ts
SUPABASE_URL=
SUPABASE_SERVICE_ROLE_SECRET=
# will be used to create a hash of the email address, which will be used for the Redis key for # each user data (i.e. id:<hash>). See lib/redis.ts for details.
EMAIL_TO_ID_SECRET=
# If you'd like to use Contentful as your CMS
# Make sure you remove DATOCMS_READ_ONLY_API_TOKEN
CONTENTFUL_SPACE_ID=
CONTENTFUL_ACCESS_TOKEN=
# If you'd like to use Storyblok as your CMS
# Make sure you remove DATOCMS_READ_ONLY_API_TOKEN
STORYBLOK_PREVIEW_TOKEN=
# If you'd like to use Prismic as your CMS
# Make sure you remove DATOCMS_READ_ONLY_API_TOKEN
PRISMIC_REPO_ID=
PRISMIC_ACCESS_TOKEN=
# If you'd like to use Prismic as your CMS
# Make sure you remove DATOCMS_READ_ONLY_API_TOKEN
AGILITY_GUID=
AGILITY_API_FETCH_KEY=
AGILITY_API_PREVIEW_KEY=
# If you'd like to use Strapi as your CMS
# Make sure you remove DATOCMS_READ_ONLY_API_TOKEN, AGILITY_GUID, AGILITY_API_FETCH_KEY & AGILITY_API_PREVIEW_KEY
STRAPI_API_URL=
# If you want to validate captcha with hCaptcha, set this variables
NEXT_PUBLIC_HCAPTCHA_SITE_KEY=
HCAPTCHA_SECRET_KEY=
NEXT_PUBLIC_PRIVACY_POLICY_URL=https://www.apidays.global/privacy-policy/