-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (40 loc) · 2.61 KB
/
.env.example
File metadata and controls
51 lines (40 loc) · 2.61 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
46
47
48
49
50
51
# ToolsDNS Configuration
# Copy this file to .env and fill in your values.
#
# Generate an API key:
# python -c "import secrets; print('td_' + secrets.token_hex(24))"
# ── Required ────────────────────────────────────────────────
TOOLDNS_API_KEY=td_your_api_key_here
# ── Server ──────────────────────────────────────────────────
TOOLDNS_HOST=0.0.0.0
TOOLDNS_PORT=8787
# Public HTTPS URL (set this when behind a reverse proxy / Railway / Render)
# Used for download URLs returned by skill tools.
# Example: https://api.yourdomain.com
TOOLDNS_PUBLIC_URL=
# ── MCP Server ───────────────────────────────────────────────
TOOLDNS_MCP_HOST=127.0.0.1
TOOLDNS_MCP_PORT=8788
TOOLDNS_MCP_TRANSPORT=http
# ── Search & Embeddings ─────────────────────────────────────
# Embedding model — ~23MB, runs on CPU, no GPU required
TOOLDNS_EMBEDDING_MODEL=all-MiniLM-L6-v2
# ── Database ─────────────────────────────────────────────────
# Default: ~/.tooldns/tooldns.db
# TOOLDNS_DB_PATH=/path/to/tooldns.db
# ── Auto-Refresh ─────────────────────────────────────────────
# Re-index all sources every N minutes (0 = disabled)
TOOLDNS_REFRESH_INTERVAL=15
# ── Logging ──────────────────────────────────────────────────
TOOLDNS_LOG_LEVEL=INFO
# ── Health Webhooks ───────────────────────────────────────────
# POST alerts here when a source goes down/recovers (Slack/Discord/custom)
TOOLDNS_WEBHOOK_URL=
TOOLDNS_WEBHOOK_SECRET=
# ── Token Cost Tracking ───────────────────────────────────────
# Your LLM model name for accurate cost savings calculation
# Examples: claude-sonnet-4-6, gpt-4o, gpt-4-turbo
TOOLDNS_MODEL=
# ── White-label Branding ──────────────────────────────────────
TOOLDNS_APP_NAME=ToolsDNS
TOOLDNS_APP_TAGLINE=DNS for AI Tools