-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
44 lines (37 loc) · 1.76 KB
/
Copy path.env.example
File metadata and controls
44 lines (37 loc) · 1.76 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
# OpenUTM Verification Environment Configuration
# Copy this file to .env and customize the values for your environment
# Use with: docker compose --env-file .env up
# =============================================================================
# Configuration
# =============================================================================
# Path to YAML config file inside the container
OPENUTM_CONFIG_PATH=/app/config/default.yaml
# =============================================================================
# Flight Blender Configuration
# =============================================================================
# Flight Blender endpoint URL
# - Local docker: http://host.docker.internal:8000 (macOS/Windows)
# - Local native: http://localhost:8000
# - Remote: https://blender.example.com
FLIGHT_BLENDER_URL=http://host.docker.internal:8000
# =============================================================================
# Logging Configuration
# =============================================================================
# Log level: DEBUG, INFO, WARNING, ERROR
LOG_LEVEL=INFO
# =============================================================================
# Docker Configuration
# =============================================================================
# User ID mapping (for proper file permissions on mounted volumes)
HOST_UID=1000
HOST_GID=1000
# Compose project name
COMPOSE_PROJECT_NAME=openutm-verification
# BuildKit for faster builds
DOCKER_BUILDKIT=1
# =============================================================================
# Build Configuration
# =============================================================================
# UV settings for Python dependency manager
UV_COMPILE_BYTECODE=1 # Set to 0 for faster builds during development
UV_LINK_MODE=copy