Files
steel-dev__cli/.env.test.example
Collin Pfeifer 58d5405d20 fix: fix magnitude run and anthropic key issues (#25)
* fix: fix magnitude run and anthropic key issues

* feat: add gemini api key support
2025-10-28 09:08:41 -04:00

21 lines
645 B
Bash

# Steel CLI Testing Environment Variables
# Copy this file to .env.test and replace with real API keys
# Required for all Steel API tests
STEEL_API_KEY=...
STEEL_API_URL=...
# Required for AI template tests
OPENAI_API_KEY=...
ANTHROPIC_API_KEY=...
GEMINI_API_KEY=...
# Optional: For testing different environments
# STEEL_API_URL=http://localhost:3000/v1 # For local development
# Notes:
# - Get Steel API key from: https://app.steel.dev/settings/api-keys
# - Get OpenAI API key from: https://platform.openai.com/api-keys
# - Get Anthropic API key from: https://console.anthropic.com/
# - Tests will be skipped if required keys are missing