-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathenv_template
More file actions
27 lines (20 loc) · 861 Bytes
/
env_template
File metadata and controls
27 lines (20 loc) · 861 Bytes
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
# 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
# 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>