-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (21 loc) · 845 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (21 loc) · 845 Bytes
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
# Required. Generate unique values before starting Pyro.
# Examples:
# openssl rand -base64 24 # ADMIN_PASSWORD
# openssl rand -hex 32 # CONTROL_PLANE_SECRET
# openssl rand -hex 24 # POSTGRES_PASSWORD (URL-safe)
# printf 'pf_%s\n' "$(openssl rand -hex 24)" # GATEWAY_API_KEY
ADMIN_PASSWORD=
# Used to encrypt provider credentials before they enter PostgreSQL.
CONTROL_PLANE_SECRET=
# Local PostgreSQL container. URL-encode special characters if you change this.
POSTGRES_PASSWORD=
# Required bootstrap key for the classification API.
GATEWAY_API_KEY=
# You can set this here or enter it later in Settings in the dashboard.
TYPESAFE_API_KEY=
TYPESAFE_ENDPOINT=https://api.typesafe.ai/v1/systemone
TYPESAFE_MODEL=jev-latest
# Runtime tuning.
QUEUE_CONCURRENCY=16
QUEUE_MAX_DEPTH=1000
CLASSIFICATION_TIMEOUT_MS=8000