-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.local.example
More file actions
80 lines (70 loc) · 3.5 KB
/
.env.local.example
File metadata and controls
80 lines (70 loc) · 3.5 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
# =================================================================
# NERV Systems Website - Environment Variables
# =================================================================
#
# Instructions:
# 1. Copy this file to .env.local (do not commit .env.local to git)
# 2. Replace placeholder values with your actual credentials
# 3. For production deployment, configure these in your hosting platform
# (Vercel: Settings > Environment Variables)
#
# See ENV-SETUP.md for detailed setup instructions
# =================================================================
# -----------------------------------------------------------------
# Google Analytics
# -----------------------------------------------------------------
# Required for tracking website analytics
# How to get: https://analytics.google.com > Admin > Data Streams > Measurement ID
# Format: G-XXXXXXXXXX (starts with "G-")
NEXT_PUBLIC_GA_ID=G-XXXXXXXXXX
# -----------------------------------------------------------------
# HubSpot Configuration
# -----------------------------------------------------------------
# Required for form submissions and lead management
# How to get Portal ID: HubSpot Settings > Account Setup > Account Defaults
# Portal ID is an 8-digit number
NEXT_PUBLIC_HUBSPOT_PORTAL_ID=244297257
# HubSpot Region (usually 'na1' or 'na2' for North America)
# Check your HubSpot URL: app.hubspot.com = na1, app-na2.hubspot.com = na2
NEXT_PUBLIC_HUBSPOT_REGION=na2
# -----------------------------------------------------------------
# HubSpot Form IDs
# -----------------------------------------------------------------
# Required for each form type used on the website
# How to get: HubSpot > Marketing > Forms > [Form Name] > Share > Embed Code
# Look for: formId: "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
#
# Note: All form IDs are optional. If not set, forms will fall back to mailto:
# Only configure the forms you need.
# General Contact Form (used in contact section)
NEXT_PUBLIC_HUBSPOT_CONTACT_FORM_ID=
# Demo Request Form (used in "Request Demo" CTA)
NEXT_PUBLIC_HUBSPOT_DEMO_FORM_ID=
# TAK Solutions Service Interest Form (used on /solutions/tak page)
NEXT_PUBLIC_HUBSPOT_TAK_FORM_ID=
# Resource Download Forms (separate form per lead magnet)
# ROI Calculator & Guide
NEXT_PUBLIC_HUBSPOT_RESOURCE_ROI_FORM_ID=5421c5dd-9cfb-4a89-bc06-6681300dca8e
# TAK vs Commercial Comparison
NEXT_PUBLIC_HUBSPOT_RESOURCE_COMPARISON_FORM_ID=e7ffdcd0-72ed-4ee5-a4d4-db10ec01aae1
# TAK Deployment Checklist
NEXT_PUBLIC_HUBSPOT_RESOURCE_DEPLOYMENT_FORM_ID=263caaa0-f00c-499f-870b-2d6a8dcc2249
# NERVA Integration Architecture Guide
NEXT_PUBLIC_HUBSPOT_RESOURCE_TECHNICAL_FORM_ID=9f3e2d38-d131-492f-a4df-410b16aeac42
# Asia Pacific Compliance Guide
NEXT_PUBLIC_HUBSPOT_RESOURCE_COMPLIANCE_FORM_ID=117045b6-5fe8-450f-9cbc-3db69ee06c8b
# TAK System Administration Guide
NEXT_PUBLIC_HUBSPOT_RESOURCE_OPERATIONS_FORM_ID=19ddfddf-4788-4135-a91f-f0558aa766a1
# Legacy form ID (kept for backwards compatibility, can be removed)
NEXT_PUBLIC_HUBSPOT_FORM_ID=
# -----------------------------------------------------------------
# Deployment Checklist
# -----------------------------------------------------------------
# Before deploying to production:
# [ ] Google Analytics ID is set and verified
# [ ] HubSpot Portal ID is correct
# [ ] HubSpot Region matches your account
# [ ] At minimum, DEMO_FORM_ID and CONTACT_FORM_ID are configured
# [ ] Test form submissions in staging environment
# [ ] Verify analytics are tracking in GA dashboard
# -----------------------------------------------------------------