summaryrefslogtreecommitdiffhomepage
path: root/packaging/dispatch-api.conf
blob: 9824e16c3872db99509b458fd8d0aa2fef6b14ca (plain)
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
# /etc/dispatch/dispatch-api.conf
# Environment configuration for the Dispatch API service.
# This file is sourced by systemd (via EnvironmentFile=) and by the
# dispatch-api-wrapper.sh script for manual invocation.
#
# Lines beginning with '#' are comments and are ignored.
# Syntax: KEY=value  (no spaces around '=', no 'export' keyword needed for systemd)

# ---------------------------------------------------------------------------
# LLM / AI provider
# ---------------------------------------------------------------------------

# API key used by the backend to call the OpenCode (or compatible) LLM API.
OPENCODE_API_KEY=

# ---------------------------------------------------------------------------
# Runtime environment
# ---------------------------------------------------------------------------

# Set to "production" for live deployments.
NODE_ENV=production

# ---------------------------------------------------------------------------
# Server
# ---------------------------------------------------------------------------

# Port the API listens on (default: 3000).
PORT=18390

# Hostname/address to bind to (default: 0.0.0.0).
# HOST=0.0.0.0