-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
32 lines (32 loc) · 1.2 KB
/
Copy pathenv.example
File metadata and controls
32 lines (32 loc) · 1.2 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
# ENVIRONMENT=test for a dev/test host, =production for a deployed host.
ENVIRONMENT=__placeholder__
# PROTOCOL=http for a local dev/test host or reverse-proxied server, otherwise =https.
PROTOCOL=__placeholder__
# AUTH_CODE for manager operations; must be 3 characters long.
AUTH_CODE=__placeholder__
# Name of Testaro agent.
TESTARO_AGENT=testaro-agent
# Testaro agent password (same as NETWATCH_AUTH in the Testaro .env.
TESTARO_AGENT_PW=__placeholder__
# Name of research agent (AI agent calling Kilotest as a tool).
RESEARCH_AGENT=research-agent
# Research agent password.
RESEARCH_AGENT_PW=__placeholder__
# URL of this Kilotest host.
THIS_KILOTEST_HOST=__placeholder__
# URL of a dev/test Kilotest host.
LOCAL_KILOTEST_HOST=http://localhost:3000
# URL of the deployed Kilotest host.
DEPLOYED_KILOTEST_HOST=https://kilotest.com
# Alert email configuration:
MANAGER_EMAIL=__placeholder__
ALERT_API_HOST=api.resend.com
ALERT_API_PATH=/emails
ALERT_API_KEY=__placeholder__
ALERT_FROM=__placeholder__
# Alert thresholds:
WAVE_BALANCE_THRESHOLD=30
AI_SERVICE0_BALANCE_THRESHOLD=10
# Per-million-token prices (Claude Haiku 4.5) on 2026-05-01 were $1 in, $5 out.
AI_MODEL0_INPUT_PRICE=0.000001
AI_MODEL0_OUTPUT_PRICE=0.000005