-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
45 lines (35 loc) · 1.83 KB
/
.env.example
File metadata and controls
45 lines (35 loc) · 1.83 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
# Environment variables for Askimo development and testing
# Copy this file to .env and fill in your actual API keys
# Gemini AI API Key (required for GeminiModelFactoryTest)
# Get your API key from: https://makersuite.google.com/app/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# OpenAI API Key (required for OpenAiModelFactoryTest)
# Get your API key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# Anthropic API Key (required for AnthropicModelFactoryTest)
# Get your API key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# X-AI API Key (required for XAiModelFactoryTest)
# Get your API key from: https://x.ai
X_API_KEY=your_xai_api_key_here
# ============================================================================
# macOS Code Signing (optional, only needed for signing/notarizing desktop app)
# ============================================================================
# Your Developer ID Application certificate identity
# Find this by running: security find-identity -v -p codesigning
# Example: "Developer ID Application: John Doe (XYZ123456)"
MACOS_IDENTITY=Developer ID Application: Your Name (TEAM_ID)
# Your Apple Team ID (10-character alphanumeric code)
# Find this at: https://developer.apple.com/account (Membership section)
# Example: "XYZ123456"
APPLE_TEAM_ID=YOUR_TEAM_ID
# Your Apple ID email (for notarization)
# This is the email you use for your Apple Developer account
# Example: "john.doe@example.com"
APPLE_ID=your@email.com
# App-specific password (for notarization)
# Generate this at: https://appleid.apple.com (Security > App-Specific Passwords)
# Example: "xxxx-xxxx-xxxx-xxxx"
# IMPORTANT: Use an app-specific password, NOT your regular Apple ID password!
APPLE_PASSWORD=xxxx-xxxx-xxxx-xxxx
# Other environment variables can be added here as needed