-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
68 lines (61 loc) · 3.77 KB
/
Copy pathenv.example
File metadata and controls
68 lines (61 loc) · 3.77 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
# ╔══════════════════════════════════════════════════════════════════════════════╗
# ║ AI Assessment Tool ║
# ║ Environment Configuration ║
# ╚══════════════════════════════════════════════════════════════════════════════╝
#
# Copy this file to .env.local and configure for your environment.
#
# Usage:
# cp env.example .env.local
# # Edit .env.local with your values
# npm run dev
#
# ═══════════════════════════════════════════════════════════════════════════════
# REQUIRED - AI Assess Tech API
# ═══════════════════════════════════════════════════════════════════════════════
# The URL of the AI Assess Tech API for lead registration and scoring.
#
# For production demo:
# NEXT_PUBLIC_API_URL=https://www.aiassesstech.com
#
# For local development (if running the main platform locally):
# NEXT_PUBLIC_API_URL=http://localhost:3000
#
NEXT_PUBLIC_API_URL=https://www.aiassesstech.com
# ═══════════════════════════════════════════════════════════════════════════════
# REQUIRED - Health Check API Key
# ═══════════════════════════════════════════════════════════════════════════════
# A Health Check API key is REQUIRED for the SDK to fetch questions and submit scores.
# Without this, the assessment page will show an error.
#
# To get a key:
# 1. Log into https://www.aiassesstech.com
# 2. Go to Dashboard → Settings → API Keys
# 3. Create a new key with label "Demo App - aiassessmenttool.com"
# 4. Copy the key (format: hck_xxxxxxxx)
#
# For the official demo at aiassessmenttool.com, use the public demo key.
#
NEXT_PUBLIC_HEALTH_CHECK_KEY=hck_your_key_here
# ═══════════════════════════════════════════════════════════════════════════════
# DEVELOPMENT NOTES
# ═══════════════════════════════════════════════════════════════════════════════
#
# This app runs on port 3001 by default to avoid conflicts with the main
# AI Assess Tech platform (port 3000).
#
# API Key Security:
# - User API keys (OpenAI/Anthropic) are stored in browser localStorage
# - Keys are automatically cleared on page refresh for security
# - Keys are NEVER sent to AI Assess Tech servers
# - All AI API calls happen directly from the browser
#
# Lead Data:
# - Email and company name are sent to AI Assess Tech for lead tracking
# - Assessment results (not API keys) are sent for scoring and verification
#
# For more information:
# - README.md - Setup and usage instructions
# - CONTRIBUTING.md - How to contribute
# - DEPLOYMENT.md - Deployment guide
#