-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
63 lines (58 loc) · 3.38 KB
/
Copy path.env.example
File metadata and controls
63 lines (58 loc) · 3.38 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
56
57
58
59
60
61
62
63
# ForgeFrame host-native runtime defaults.
# Copy this file to /etc/forgeframe/forgeframe.env via deploy/scripts/install-forgeframe.sh
# and replace the placeholder values before enabling the services.
#
# The internal API service stays on loopback. The normative public product path is:
# https://<your-fqdn>/
# on 0.0.0.0:443 with /v1 and /admin on the same origin, plus the port-80 ACME helper.
FORGEFRAME_HOST=127.0.0.1
FORGEFRAME_PORT=8080
FORGEFRAME_API_BASE=/v1
FORGEFRAME_FRONTEND_DIST_PATH=/opt/ForgeFrame/frontend/dist
FORGEFRAME_PUBLIC_FQDN=forgeframe.example.com
FORGEFRAME_PUBLIC_HTTPS_HOST=0.0.0.0
FORGEFRAME_PUBLIC_HTTPS_PORT=443
FORGEFRAME_PUBLIC_HTTP_HELPER_HOST=0.0.0.0
FORGEFRAME_PUBLIC_HTTP_HELPER_PORT=80
FORGEFRAME_PUBLIC_ADMIN_BASE=/admin
FORGEFRAME_PUBLIC_TLS_MODE=integrated_acme
FORGEFRAME_PUBLIC_TLS_CERT_PATH=/etc/forgeframe/tls/live/fullchain.pem
FORGEFRAME_PUBLIC_TLS_KEY_PATH=/etc/forgeframe/tls/live/privkey.pem
FORGEFRAME_PUBLIC_TLS_WEBROOT_PATH=/var/lib/forgeframe/acme-webroot
FORGEFRAME_PUBLIC_TLS_STATE_PATH=/var/lib/forgeframe/tls
FORGEFRAME_PUBLIC_TLS_LAST_ERROR_PATH=/var/lib/forgeframe/tls/last_error.txt
FORGEFRAME_PUBLIC_TLS_RENEWAL_WINDOW_DAYS=30
FORGEFRAME_PUBLIC_TLS_ACME_EMAIL=admin@example.com
FORGEFRAME_PUBLIC_TLS_ACME_DIRECTORY_URL=https://acme-v02.api.letsencrypt.org/directory
FORGEFRAME_BOOTSTRAP_ADMIN_USERNAME=admin
FORGEFRAME_BOOTSTRAP_ADMIN_PASSWORD=replace-with-a-generated-bootstrap-password
FORGEFRAME_HARNESS_STORAGE_BACKEND=postgresql
FORGEFRAME_CONTROL_PLANE_STORAGE_BACKEND=postgresql
FORGEFRAME_OBSERVABILITY_STORAGE_BACKEND=postgresql
FORGEFRAME_GOVERNANCE_STORAGE_BACKEND=postgresql
FORGEFRAME_INSTANCES_STORAGE_BACKEND=postgresql
FORGEFRAME_PG_MODE=native
FORGEFRAME_PG_HOST=127.0.0.1
FORGEFRAME_PG_PORT=5442
FORGEFRAME_PG_DB=forgeframe
FORGEFRAME_PG_USER=forgeframe
FORGEFRAME_PG_PASSWORD=replace-with-a-generated-postgres-password
FORGEFRAME_PG_CONTAINER_NAME=forgeframe-postgres
FORGEFRAME_PG_CLUSTER_NAME=forgeframe
FORGEFRAME_POSTGRES_URL=postgresql+psycopg://forgeframe:replace-with-a-generated-postgres-password@127.0.0.1:5442/forgeframe
FORGEFRAME_HARNESS_POSTGRES_URL=postgresql+psycopg://forgeframe:replace-with-a-generated-postgres-password@127.0.0.1:5442/forgeframe
FORGEFRAME_CONTROL_PLANE_POSTGRES_URL=postgresql+psycopg://forgeframe:replace-with-a-generated-postgres-password@127.0.0.1:5442/forgeframe
FORGEFRAME_OBSERVABILITY_POSTGRES_URL=postgresql+psycopg://forgeframe:replace-with-a-generated-postgres-password@127.0.0.1:5442/forgeframe
FORGEFRAME_GOVERNANCE_POSTGRES_URL=postgresql+psycopg://forgeframe:replace-with-a-generated-postgres-password@127.0.0.1:5442/forgeframe
FORGEFRAME_INSTANCES_POSTGRES_URL=postgresql+psycopg://forgeframe:replace-with-a-generated-postgres-password@127.0.0.1:5442/forgeframe
FORGEFRAME_EXECUTION_POSTGRES_URL=postgresql+psycopg://forgeframe:replace-with-a-generated-postgres-password@127.0.0.1:5442/forgeframe
FORGEFRAME_EXECUTION_WORKER_INSTANCE_ID=''
FORGEFRAME_EXECUTION_WORKER_COMPANY_ID=''
FORGEFRAME_EXECUTION_WORKER_KEY=forgeframe-worker
FORGEFRAME_EXECUTION_WORKER_EXECUTION_LANE=background_agentic
FORGEFRAME_EXECUTION_WORKER_RUN_KIND=responses_background
FORGEFRAME_EXECUTION_WORKER_POLL_INTERVAL_SECONDS=2
FORGEFRAME_EXECUTION_WORKER_LEASE_TTL_SECONDS=300
FORGEFRAME_EXECUTION_WORKER_HEARTBEAT_TTL_SECONDS=360
FORGEFRAME_OLLAMA_BASE_URL=http://127.0.0.1:11434/v1
FORGEFRAME_PYTHON_BIN=/opt/ForgeFrame/.venv/bin/python