-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
39 lines (32 loc) · 1.3 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
# ------------------------------------------------------------------------------
# This is an example .env file.
#
# All of these environment vars must be defined either in your environment or in
# a local .env file in order to run this app.
#
# @see https://github.com/rolodato/dotenv-safe for more details.
# ------------------------------------------------------------------------------
# Optional (for fathom analytics)
#NEXT_PUBLIC_FATHOM_ID=
# Optional (for PostHog analytics)
#NEXT_PUBLIC_POSTHOG_ID=
# Optional (for rendering tweets more efficiently)
#TWITTER_ACCESS_TOKEN=
# Optional (for persisting preview images to redis)
# NOTE: if you want to enable redis, only REDIS_HOST and REDIS_PASSWORD are required
# NOTE: don't forget to set isRedisEnabled to true in the site.config.ts file
#REDIS_HOST=
#REDIS_PASSWORD=
#REDIS_USER='default'
#REDIS_NAMESPACE='preview-images'
# Optional (for accessing private pages in development)
# NOTION_TOKEN_V2=
# NOTION_ACTIVE_USER=
# NEXT_PUBLIC_SITE_CONFIG={"rootNotionPageId": "your-page-id-here"}
# Api key for website integration
NOTION_API_KEY=
NOTION_REGISTER_OF_MEMBERS_DATABASE_ID=
# For Telegram notifications
NEXT_TELEGRAM_TOKEN=<YOUR_TELEGRAM_TOKEN>
NEXT_TELEGRAM_CHAT_ID=<YOUR_TELEGRAM_CHAT_ID>
NEXT_TELEGRAM_MESSAGE_THREAD_ID=<YOUR_TELEGRAM_MESSAGE_THREAD_ID>