-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (35 loc) · 1.7 KB
/
.env.example
File metadata and controls
42 lines (35 loc) · 1.7 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
# GitHub OAuth – create at https://github.com/settings/developers
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
# One URL for production: your app’s public URL (no trailing slash).
# Callback and frontend URLs are set automatically from this.
# Leave empty for local dev (uses localhost:8000 / localhost:5173).
APP_URL=
# Optional overrides (only if you don’t use APP_URL):
# GITHUB_CALLBACK_URL=http://localhost:8000/api/auth/callback
# FRONTEND_URL=http://localhost:5173
# Session secret (use a random string in production)
SECRET_KEY=change-me-in-production
# LLM: ollama | huggingface | cursor
LLM_PROVIDER=cursor
# Ollama (when LLM_PROVIDER=ollama)
OLLAMA_HOST=http://localhost:11434
OLLAMA_MODEL=llama3.2
# Optional: lower temperature (e.g. 0.4) for more consistent task summaries
# OLLAMA_TEMPERATURE=0.4
# Hugging Face (when LLM_PROVIDER=huggingface)
HF_TOKEN=
HF_MODEL=mistralai/Mistral-7B-Instruct-v0.2
# Cursor CLI (when LLM_PROVIDER=cursor)
# Auth: (1) Same machine: run `cursor agent login` once (browser); (2) Docker/headless: set CURSOR_API_KEY (create at cursor.com/dashboard → Integrations → User API Keys)
# Directory for cloning repos (default .repos_cache)
REPOS_CACHE_DIR=.repos_cache
# Optional: directory for Cursor summarize cache (default .summary_cache under project root)
SUMMARY_CACHE_DIR=.summary_cache
# Optional: path for SQLite DB that stores saved summaries per user (default taskpilot_summaries.db)
SUMMARY_DB_PATH=taskpilot_summaries.db
# Timeout in seconds for Cursor CLI agent (default 300)
# CURSOR_CLI_TIMEOUT=300
# For headless/Docker: Cursor User API Key (required when using Cursor in Docker)
# Create at https://cursor.com/settings → Integrations → User API Keys
# CURSOR_API_KEY=