-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
22 lines (16 loc) · 729 Bytes
/
Copy pathenv.example
File metadata and controls
22 lines (16 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Example environment variables file
# Copy this to .env and update with your actual API keys
# Lua API Key (optional - fallback if not in keychain)
# Use this for CI/CD environments or if you prefer .env over keychain
# Priority: 1. Keychain, 2. Environment variable, 3. .env file
# LUA_API_KEY=your-lua-api-key-here
# OpenAI API Key (for AI tools)
OPENAI_API_KEY=your-openai-api-key-here
# Pinecone API Key (for vector search tools)
PINECONE_API_KEY=your-pinecone-api-key-here
# Stripe API Key (for payment tools)
STRIPE_SECRET_KEY=your-stripe-secret-key-here
# Custom application settings
BASE_URL=http://localhost:3000
API_KEY=your-api-key-here
# Note: Values in lua.skill.yaml will override values in this .env file