-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
95 lines (85 loc) · 3.2 KB
/
.env.example
File metadata and controls
95 lines (85 loc) · 3.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
DATABASE_TYPE=postgres
DATABASE_URL=postgresql://imago:imago@127.0.0.1:35432/imago
DATABASE_AUTH_TOKEN=
IMAGO_NODE_NAME=Capture Node
IMAGO_NODE_DATABASE_TYPE=sqlite
# Defaults resolve to ~/.imago-capture on first boot; override for non-default paths.
IMAGO_NODE_DATABASE_URL=
IMAGO_NODE_DATA_DIR=
IMAGO_NODE_ASSET_PATH=
IMAGO_NODE_DAEMON_HOST=127.0.0.1
IMAGO_NODE_DAEMON_PORT=47891
IMAGO_NODE_UI_PORT=47892
IMAGO_CAPTURE_DAEMON_URL=http://127.0.0.1:47891
# Shared secret used by the capture-UI server to authenticate to the daemon.
# Leave empty; the daemon writes a fresh token to ~/.imago-capture/.daemon-token
# on first boot and the UI reads it from there.
IMAGO_NODE_DAEMON_TOKEN=
MINIO_ENDPOINT=http://127.0.0.1:39000
MINIO_REGION=us-east-1
MINIO_BUCKET=imago
MINIO_ACCESS_KEY=imago
MINIO_SECRET_KEY=imago-dev-secret
MINIO_FORCE_PATH_STYLE=true
IMAGO_OPERATOR_EMAIL=operator@imago.local
IMAGO_OPERATOR_PASSWORD=imago-local-dev
IMAGO_WORKERS_ENABLED=true
# Optional AI runtime endpoints used by the shared processor runtime.
# Prefer the IMAGO_* names in new setups; the processor also accepts the
# legacy TTS_*/COMFYUI_* aliases used by existing HappyVertical services.
IMAGO_STUDIO_RUNTIME_URL=
IMAGO_STUDIO_RUNTIME_USERNAME=
IMAGO_STUDIO_RUNTIME_PASSWORD=
IMAGO_COMFYUI_URL=
IMAGO_COMFYUI_USERNAME=
IMAGO_COMFYUI_PASSWORD=
# Default ComfyUI wait timeout (ms); 10 min accommodates first-run weight
# downloads + CPU inference.
IMAGO_COMFY_TIMEOUT_MS=600000
IMAGO_INSTA360_MEDIASDK_RUNNER=
IMAGO_INSTA360_MEDIASDK_BIN=
IMAGO_INSTA360_MEDIASDK_MODEL_ROOT=
IMAGO_INSTA360_MEDIASDK_DISABLE_CUDA=0
IMAGO_INSTA360_MEDIASDK_ENABLE_SOFT_ENCODE=0
IMAGO_INSTA360_MEDIASDK_ENABLE_SOFT_DECODE=0
IMAGO_INSTA360_MEDIASDK_ENABLE_DEBUG_INFO=0
IMAGO_INSTA360_MEDIASDK_IMAGE_PROCESSING_ACCEL=auto
IMAGO_INSTA360_MEDIASDK_PRINT_COMMAND=0
# Legacy aliases supported for compatibility with current infra.
TTS_ENDPOINT=
TTS_USERNAME=
TTS_PASSWORD=
COMFYUI_API_URL=
COMFYUI_API_USER=
COMFYUI_API_PASS=
# Only needed if you're working against sibling HappyVertical source repos
# checked out elsewhere (imago-ui linking, etc). Leave blank otherwise.
HAPPYVERTICAL_REPOS=
IMAGO_CAMERA_ADAPTER=simulator
IMAGO_MOTION_ADAPTER=flipper
IMAGO_GPHOTO_BRIDGE_CMD=
IMAGO_SONY_BRIDGE_CMD=
IMAGO_SONY_SDK_BRIDGE_CMD=
IMAGO_SONY_SDK_BRIDGE_BIN=
IMAGO_SONY_SDK_CONNECT_ATTEMPTS=3
IMAGO_SONY_SDK_CONNECT_RETRY_DELAY_MS=4000
IMAGO_SONY_SDK_CONNECT_TIMEOUT_MS=15000
IMAGO_SONY_SDK_CAPTURE_TIMEOUT_MS=20000
IMAGO_SONY_SDK_DEBUG=0
# Default timeout (ms) for external hardware bridge subprocesses.
IMAGO_BRIDGE_TIMEOUT_MS=30000
# Preferred MVP motion controller. Set to the device path for your Flipper
# (e.g. /dev/cu.usbmodemflip_<id> on macOS, /dev/ttyACM0 on Linux,
# COM3 on Windows).
IMAGO_FLIPPER_PORT=
IMAGO_FLIPPER_IR_FREQUENCY=38000
IMAGO_FLIPPER_IR_DUTY_CYCLE=33
IMAGO_FLIPPER_PULSE_MS=300
IMAGO_FLIPPER_RUN_PULSE_MS=450
IMAGO_FLIPPER_RUN_PAUSE_MS=1200
# Optional driver override. Leave empty to let the node auto-detect; set to
# one of cpu | cuda | mps when you want to pin the processing plane to a
# specific hardware path.
IMAGO_PROCESSING_DRIVER=
# Optional default for capture-UI ?session= validation. When set, the UI
# refuses arbitrary session IDs that don't belong to this node.