Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions examples/bun-toolkit/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# LLM Configuration
# Required for credential issuance from documents

# LLM Provider: "claude", "gemini", "openai", or "azure-openai" (default: claude)
# LLM_PROVIDER=claude

# LLM API Key
# For Claude: Get your API key from https://console.anthropic.com
# For Gemini: Get your API key from https://aistudio.google.com/apikey
# For OpenAI: Get your API key from https://platform.openai.com/api-keys
# For Azure OpenAI: Get your API key from Azure Portal (Keys and Endpoint section)
LLM_API_KEY=your-api-key-here

# Azure OpenAI Configuration (only needed if LLM_PROVIDER=azure-openai)
# AZURE_OPENAI_ENDPOINT=https://your-resource-name.openai.azure.com/
# AZURE_OPENAI_DEPLOYMENT_NAME=your-deployment-name

# Verifiable Credential Issuer Configuration
# Required for signing credentials
VC_CLI_ISSUER_DID=did:web:your-domain.com
VC_CLI_PRIVATE_KEY_PATH=~/vc-cli/did-web-your-domain.com/private-key.json

# Optional: Output directory for generated files
# VC_CLI_OUTPUT_DIR=~/Downloads/vc-cli/credentials
Loading