-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathenv_template
More file actions
31 lines (24 loc) · 1.07 KB
/
Copy pathenv_template
File metadata and controls
31 lines (24 loc) · 1.07 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
# Backend API server
NEXT_PUBLIC_API_SERVER_URL=<TODO>
# Backend Node.js API server (usually same as above)
NEXT_PUBLIC_API_NODEJS_SERVER_URL=<TODO>
# PropelAuth authentication URL
# This is required for login functionality (both Slack and Google)
NEXT_PUBLIC_REACT_APP_AUTH_URL=<TODO>
# Analytics
NEXT_PUBLIC_GOOGLE_ANALYTICS=DISABLED
NEXT_PUBLIC_FACEBOOK_PIXEL_ID=DISABLED
# Google Ads account 371-489-1437 (the one linked to GA4 property ohack-dev).
# Leave unset to skip the Ads tag entirely.
# Google Ads *tag* id for account 371-489-1437 (not the customer id).
NEXT_PUBLIC_GOOGLE_ADS_ID=AW-11474351176
# reCAPTCHA v3 (get keys from https://www.google.com/recaptcha/admin)
NEXT_PUBLIC_GOOGLE_CAPTCHA_SITE_KEY=<TODO>
# Signup with Slack (URL to join Slack workspace)
NEXT_PUBLIC_SLACK_SIGNUP_LINK=<TODO>
# Optional: Slack Team/Workspace ID (defaults to T1Q7936BH if not set)
# NEXT_PUBLIC_SLACK_TEAM_ID=T1Q7936BH
# Store / Stripe integration (for /store checkout)
# Get keys from https://dashboard.stripe.com/apikeys
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=<TODO>
STRIPE_SECRET_KEY=<TODO>