-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
55 lines (51 loc) · 2.27 KB
/
Copy path.env.example
File metadata and controls
55 lines (51 loc) · 2.27 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
52
53
54
55
# DojoZero environment template
# Copy this file to .env and fill in values for your setup.
# Never commit real credentials.
#
# --- Dependency tracks (see docs/installation.md) ---
#
# Default install (uv pip install .): use Core LLM keys + Jaeger tracing.
# No need for DOJOZERO_OSS_* / DOJOZERO_SLS_* unless you add extras below.
#
# Alibaba + optional Redis (uv pip install '.[alicloud]' and/or '.[redis]'):
# .[alicloud] → OSS, SLS tracing/logstore, alibabacloud-credentials
# .[redis] → sync-service and Redis-backed paths
# -------------------------------------------------------------------
# Core LLM / intelligence APIs (typical minimum for NBA/NFL scenarios)
# -------------------------------------------------------------------
DOJOZERO_DASHSCOPE_API_KEY=
DOJOZERO_TAVILY_API_KEY=
# Optional model providers
DOJOZERO_ANTHROPIC_API_KEY=
DOJOZERO_GEMINI_API_KEY=
DOJOZERO_OPENAI_API_KEY=
DOJOZERO_OPENAI_BASE_URL=
DOJOZERO_XAI_API_KEY=
# Optional social data
DOJOZERO_X_API_BEARER_TOKEN=
# -------------------------------------------------------------------
# Alibaba Cloud OSS (optional — for dojo0 serve --oss-backup and oss:// backtest paths)
# -------------------------------------------------------------------
# DOJOZERO_OSS_ENDPOINT=
# DOJOZERO_OSS_BUCKET=
# DOJOZERO_OSS_PREFIX=
# -------------------------------------------------------------------
# Alibaba Cloud SLS (optional — for --trace-backend sls on run/backtest/serve/arena)
# -------------------------------------------------------------------
# DOJOZERO_SLS_PROJECT=
# DOJOZERO_SLS_ENDPOINT=
# DOJOZERO_SLS_LOGSTORE=
# -------------------------------------------------------------------
# Docker local compose (docker/docker-compose.local.yml) — optional
# -------------------------------------------------------------------
# Host port for the dashboard when using --profile serve (default 8000)
# DOJOZERO_SERVE_PORT=8000
#
# Space-separated paths/globs, each passed as --trial-source (default: daily NBA + NFL)
# DOJOZERO_TRIAL_SOURCE=trial_sources/daily/nba.yaml trial_sources/daily/nfl.yaml
#
# With --profile tracing: send traces to the Jaeger container (set to 1)
# DOJOZERO_ENABLE_JAEGER=0
#
# Host port for Arena (--profile arena). Rebuild frontend with matching VITE_API_URL if not 3001.
# DOJOZERO_ARENA_PORT=3001