-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.template
33 lines (22 loc) · 916 Bytes
/
.env.template
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
# Intentionally including this API key since it is read-only and will allow others to render the site using our content DB
NEXT_PUBLIC_STORYBLOK_PUBLIC_TOKEN=GNTGwBZKQ6E9PtOZeMYCNAtt
NEXT_PUBLIC_STORYBLOK_ACCESS_TOKEN=preview_token_here
STORYBLOK_SPACE_ID=1022597
# Internally generated secret token (not from Storyblok) for preview mode
PREVIEW_TOKEN_CUSTOM=token_here
NODE_ENV=development
API_PORT=4321
RESEND_API_KEY=resend_api_key_here
UMAMI_API_KEY=umami_api_key_here
UMAMI_WEBSITE_ID=umami_website_id_here
DEBUG_UMAMI=false
# Generate a listmonk user role and then new user (select "API user" during creation)
LISTMONK_API_URL=https://dev.activistchecklist.org
LISTMONK_API_USER=api_user
LISTMONK_API_TOKEN=TOKEN_HERE
LISTMONK_USE_TOKEN_AUTH=true
LISTMONK_DEFAULT_LIST_ID=3
FTP_USER=username_here
FTP_HOST=host_here
FTP_DIR=directory_here
alias upload="rsync -avz out/ $FTP_USER@$FTP_HOST:$FTP_DIR"