-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy path.env.example
More file actions
53 lines (41 loc) · 1.86 KB
/
Copy path.env.example
File metadata and controls
53 lines (41 loc) · 1.86 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
# vTeam Backend - .env.example
# Copy this file to .env and adjust values as needed.
########################################
# Server & Runtime
########################################
# HTTP port for the backend server (default: 8080)
PORT=8080
# Kubernetes namespace the backend should consider as default (used for logs/metrics and fallbacks)
NAMESPACE=default
# Local state storage base directory (used for persisting minimal session state)
STATE_BASE_DIR=/data/state
# Base path where RFE workspace files are mounted (PVC)
PVC_BASE_DIR=/workspace
# Path to kubeconfig for out-of-cluster development. Leave empty for in-cluster.
# Example: /Users/you/.kube/config
KUBECONFIG=
########################################
# GitHub App Integration
########################################
# If set, enables GitHub App flows. If empty, GitHub App features are disabled.
GITHUB_APP_ID=
# Path to the GitHub App private key PEM file (default used in container image)
GITHUB_APP_PRIVATE_KEY_PATH=/etc/github-app/private-key.pem
########################################
# Runner / Jobs
########################################
# Optional: Explicit WebSocket URL for runners to connect back to the backend.
# If empty, a URL is constructed using BACKEND_SERVICE and project/session info.
BACKEND_WS_BASE=
# Kubernetes Service DNS name for the backend (used to build default WS URL for runners)
BACKEND_SERVICE=ambient-code-backend
# Container image for the runner job (required to launch sessions)
# Example: ghcr.io/your-org/runner-shell:latest
RUNNER_IMAGE=
########################################
# Spec Kit bootstrap (workspace initialization)
########################################
# Version tag of Spec Kit to download when initializing a workspace
SPEC_KIT_VERSION=v0.0.50
# Template name prefix used to construct the Spec Kit asset URL
SPEC_KIT_TEMPLATE_NAME=spec-kit-template-claude-sh