forked from cdot65/naf-ai-agents-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.template
More file actions
23 lines (22 loc) · 1003 Bytes
/
.env.template
File metadata and controls
23 lines (22 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# LangGraph Workshop - Environment Configuration Template
#
# QUICKSTART (2 minutes):
# 1. Copy this file: cp .env.template .env
# 2. Add your Anthropic API key below
# 3. Run: make test-foundations-1
# ============================================================================
# REQUIRED: Anthropic API Key
# ============================================================================
# Get your key from: https://console.anthropic.com/settings/keys
# Workshop provides temporary $5 keys (check workshop materials)
ANTHROPIC_API_KEY=YOUR_ANTHROPIC_API_KEY_HERE
#
# ============================================================================
# NOTES:
# ============================================================================
# ✅ ANTHROPIC_API_KEY is the ONLY required field for Foundations series
# ✅ All notebooks work with mock/simulated data by default
#
# SECURITY:
# ⚠️ Never commit your .env file (it's in .gitignore)
# ⚠️ Revoke temporary API keys after workshop completion