-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
102 lines (74 loc) · 2.94 KB
/
.env.example
File metadata and controls
102 lines (74 loc) · 2.94 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
# ============================================
# Brooklyn Rail - Environment Variables
# ============================================
# Copy this file to .env.local and fill in your values
# All credentials can be found in 1Password (PLATFORM vault)
# ============================================
# --------------------------------------------
# Base URLs
# --------------------------------------------
# Base URL for the site (use localhost for development)
NEXT_PUBLIC_BASE_URL='https://localhost:3000'
# NEXT_PUBLIC_BASE_URL='https://brooklynrail.org'
# API URL for the site
NEXT_PUBLIC_API_URL='https://localhost:3000/api'
# NEXT_PUBLIC_API_URL='https://brooklynrail.org/api'
# --------------------------------------------
# Directus CMS
# --------------------------------------------
# Directus Cloud URL
NEXT_PUBLIC_DIRECTUS_URL='https://studio.brooklynrail.org'
# NEXT_PUBLIC_DIRECTUS_URL='http://localhost:8055'
# Directus assets/image path
NEXT_PUBLIC_IMAGE_PATH='https://studio.brooklynrail.org/assets/'
# NEXT_PUBLIC_IMAGE_PATH='http://localhost:8055/assets/'
# Live URL for Directus (used for server-side requests)
NEXT_LIVE_URL='https://studio.brooklynrail.org'
# --------------------------------------------
# Preview & Revalidation
# --------------------------------------------
# Token for validating Preview URLs
NEXT_PUBLIC_PREVIEW_TOKEN='your_preview_token'
# Next.js cache revalidation secret
NEXT_PUBLIC_REVALIDATION_SECRET='your_revalidation_secret'
# Vercel automation bypass secret (for programmatic deployments)
VERCEL_AUTOMATION_BYPASS_SECRET='your_vercel_bypass_secret'
# --------------------------------------------
# Algolia Search
# --------------------------------------------
# Algolia application ID
NEXT_PUBLIC_ALGOLIA_APP_ID='your_algolia_app_id'
# Algolia search API key (public, search-only)
NEXT_PUBLIC_ALGOLIA_API_KEY='your_algolia_api_key'
# --------------------------------------------
# Mailchimp Newsletter
# --------------------------------------------
# Mailchimp API key
MAILCHIMP_API_KEY='your_mailchimp_api_key'
# Mailchimp server prefix (e.g., 'us1')
MAILCHIMP_API_SERVER='us1'
# Mailchimp audience/list ID
MAILCHIMP_AUDIENCE_ID='your_mailchimp_audience_id'
# --------------------------------------------
# Airtable
# --------------------------------------------
# Airtable API key
AIRTABLE_API_KEY='your_airtable_api_key'
# Airtable base ID
AIRTABLE_BASE_ID='your_airtable_base_id'
# Airtable table name
AIRTABLE_TABLE_NAME='your_airtable_table_name'
# --------------------------------------------
# Zoom (for events integration)
# --------------------------------------------
# Zoom API key
ZOOM_API_KEY='your_zoom_api_key'
# Zoom API secret
ZOOM_API_SECRET='your_zoom_api_secret'
# --------------------------------------------
# PostHog Analytics
# --------------------------------------------
# PostHog project key
NEXT_PUBLIC_POSTHOG_KEY='your_posthog_key'
# PostHog host URL
NEXT_PUBLIC_POSTHOG_HOST='https://us.i.posthog.com'