-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.fork.example
More file actions
51 lines (43 loc) · 1.56 KB
/
.env.fork.example
File metadata and controls
51 lines (43 loc) · 1.56 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
# ====================================
# ForgePilot Studio Env Template
# ====================================
# ---------- Brand / Metadata ----------
PROJECT_NAME_CN="ForgePilot 工程执行工作台"
PROJECT_NAME_EN="ForgePilot Studio"
PROJECT_ORG="your-org"
PROJECT_REPO_URL="https://github.com/your-org/forgepilot-studio"
# ---------- LLM Gateway ----------
LLM_MODEL="gpt-4o"
LLM_API_KEY="replace-with-your-key"
LLM_BASE_URL="https://llm-gateway.example.com/v1"
LLM_TIMEOUT="120"
LLM_NUM_RETRIES="6"
# ---------- Ollama ----------
OLLAMA_BASE_URL="http://ollama.internal.example.com:11434"
# ---------- Database ----------
DB_HOST="postgres.internal.example.com"
DB_PORT="5432"
DB_NAME="forgepilot_studio"
DB_USER="forgepilot"
DB_PASS="replace-with-strong-password"
# ---------- Redis ----------
REDIS_HOST="redis.internal.example.com"
REDIS_PORT="6379"
REDIS_DB="0"
REDIS_PASSWORD="replace-with-strong-password"
# ---------- Sandbox / Images ----------
FORGEPILOT_IMAGE_NAME="forgepilot-studio:latest"
FORGEPILOT_CONTAINER_NAME="forgepilot-studio-app"
AGENT_SERVER_IMAGE_REPOSITORY="ghcr.io/your-org/agent-server"
AGENT_SERVER_IMAGE_TAG="1.16.1-python"
OH_RUNTIME_RUNTIME_IMAGE_REPO="ghcr.io/your-org/runtime"
# ---------- Frontend ----------
VITE_BACKEND_BASE_URL="api.forgepilot.example.com"
VITE_BACKEND_HOST="api.forgepilot.example.com"
VITE_USE_TLS="true"
VITE_FRONTEND_PORT="3001"
# ---------- Runtime ----------
WORKSPACE_BASE="/data/forgepilot/workspace"
FILE_STORE_PATH="/data/forgepilot/file_store"
CACHE_DIR="/data/forgepilot/cache"
FORGEPILOT_HOME="/data/forgepilot/home"