-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
112 lines (88 loc) · 2.7 KB
/
Copy path.env.example
File metadata and controls
112 lines (88 loc) · 2.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
##
# Local dev server configuration (development env only)
##
# Environment variable
DEV_SERVER_PORT="4321"
##
# For Docker Compose use with container mocks for E2E setup (development env only)
##
# Environment variable
COMPOSE_PROJECT_NAME="wb-e2e"
##
# Astro DB - local file-backed dev database (token unused for file connections)
##
# Environment variable
ASTRO_DB_REMOTE_URL="<db_uri_here>"
# Environment secret
ASTRO_DB_APP_TOKEN="<app_token_here>"
##
# Vercel automatically sends the CRON_SECRET as an Authorization header
# when it invokes your cron job. Your endpoint can then verify this secret
# to ensure the request originated from Vercel.
##
# Environment secret
CRON_SECRET="<cron_secret_here>"
##
# Bundled into client code so prefixed with PUBLIC_
##
# Environment variable
PUBLIC_GOOGLE_MAPS_API_KEY="<api_key_here>"
PUBLIC_GOOGLE_MAP_ID="<map_id>"
##
# HubSpot CRM configuration
# Provided by Vercel to Function so no need to bundle with PUBLIC_ prefix
##
# Environment variable
HUBSPOT_HTTP_PORT="9012" # development env only for WireMock container
# Environment secret
HUBSPOT_ACCESS_TOKEN="<access_token_here>"
# Environment variable — ID of the static ILS segment used for newsletter subscribers
HUBSPOT_NEWSLETTER_LIST_ID="<list_id_here>"
##
# SMTP remailer
# Provided by Vercel to Function so no need to bundle with PUBLIC_ prefix
##
# Environment variable
RESEND_HTTP_PORT="9011" # development env only for WireMock container
# Environment secret
RESEND_API_KEY="<api_key_here>"
##
# HubSpot CRM
# Provided by Vercel to Function so no need to bundle with PUBLIC_ prefix
##
# Environment variable
HUBSPOT_HTTP_PORT="9012" # development env only for WireMock container
# Environment secret
HUBSPOT_ACCESS_TOKEN="<access_token_here>"
# Environment variable — ID of the static list used for newsletter subscribers
HUBSPOT_NEWSLETTER_LIST_ID="<list_id_here>"
##
# Observability / external services
##
# Environment variable
PUBLIC_SENTRY_DSN="https://examplePublicKey@o0.ingest.sentry.io/0"
# Environment secret
SENTRY_AUTH_TOKEN="<token_here>"
##
# Upstash Search database
##
# Environment variable
PUBLIC_UPSTASH_SEARCH_REST_URL="<YOUR_SEARCH_REST_URL>"
PUBLIC_UPSTASH_SEARCH_READONLY_TOKEN="<YOUR_SEARCH_READONLY_TOKEN>"
# Environment secret (only in production for Vercel search.yml action and local development file)
UPSTASH_SEARCH_REST_URL="<YOUR_SEARCH_REST_URL>"
UPSTASH_SEARCH_REST_TOKEN="<YOUR_SEARCH_REST_TOKEN>"
##
# Vercel deployment vars
##
# Environment secret
VERCEL_TOKEN="<token_here>"
# Environment variable
VERCEL_ORG_ID="<org_id_here>"
# Environment variable
VERCEL_PROJECT_ID="<project_id_here>"
##
# Used for social shares on Mastodon
##
# Environment secrets
WEBMENTION_IO_TOKEN="<token_here>"