-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (35 loc) · 1.43 KB
/
.env.example
File metadata and controls
39 lines (35 loc) · 1.43 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
# macOS Code Signing & Notarization
# Signing identity (optional for local dev, required for distribution)
APPLE_SIGNING_IDENTITY="Developer ID Application: Your Name (TEAMID)"
# App Store Connect API key for notarization
# https://appstoreconnect.apple.com/access/integrations/api
APPLE_API_KEY=XXXXXXXXXX
APPLE_API_ISSUER=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
APPLE_API_KEY_B64=<base64-encoded .p8 key content>
# Certificate (base64-encoded .p12)
APPLE_CERTIFICATE=<base64-encoded .p12 content>
APPLE_CERTIFICATE_PASSWORD=<password set during export>
# Windows Code Signing (self-signed)
# Arbitrary password used to encrypt/decrypt the PFX certificate in CI
WINDOWS_CERT_PASSWORD=<any strong password>
# Last.fm API Integration
# Get your API key and secret from: https://www.last.fm/api/account/create
# Embedded into the binary at compile time via build.rs.
# Runtime env vars override embedded values (useful for development).
LASTFM_API_KEY=your_lastfm_api_key_here
LASTFM_API_SECRET=your_lastfm_api_secret_here
# Agent Script (scripts/agent.py)
# Ollama model and host for the playlist generator agent
OLLAMA_MODEL=qwen3.5:9b
OLLAMA_HOST=http://localhost:11434
# Agent behavior
AGENT_MAX_TURNS=5
AGENT_TEMPERATURE=0.2
AGENT_THINK=false
AGENT_SEED=0
AGENT_MAX_PLAYLIST_TRACKS=25
AGENT_LOG_FILE=/tmp/ollama_python_agent.jsonl
# Taskfile Env Precedence
# * Manipulate venv path
# * https://taskfile.dev/docs/experiments/env-precedence
TASK_X_ENV_PRECEDENCE=1