-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (36 loc) · 1.28 KB
/
.env.example
File metadata and controls
47 lines (36 loc) · 1.28 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
# Application
FLASK_APP=src.app
FLASK_ENV=development
SECRET_KEY=your-secret-key-here
DEBUG=true
# Database
DATABASE_URL=sqlite:///data/mother.db
REDIS_URL=redis://localhost:6379
# AI Models
AI_MODEL_PATH=static/models
YOLO_MODEL=yolov5s.pt
# Hardware
HARDWARE_ENABLED=true
CAMERA_DEVICES=0,1
MOTOR_CONTROLLERS=4
# WebSocket
WEBSOCKET_PORT=8765
WEBSOCKET_ENABLED=true
# CAD
CAD_DEFAULT_UNIT=mm
CAD_EXPORT_FORMATS=stl,obj,step
# ──────────────────────────────────────────────
# MOTHER EXO Backend (src/api/mother_integration.py)
# ──────────────────────────────────────────────
# FastAPI backend port (default 5001)
VITE_MOTHER_EXO_URL=http://localhost:5001
# Training service port (default 5002)
VITE_TRAINING_SERVICE_URL=http://localhost:5002
# MOTHER LLM / Core / T2V endpoints (read by FastAPI integration layer)
MOTHER_LLM_URL=http://localhost:8000/v1/llm
MOTHER_CORE_URL=http://localhost:8001/v1/core
MOTHER_T2V_URL=http://localhost:8002/v1/t2v
# GROOT policy server
GROOT_POLICY_ENDPOINT=http://localhost:8081
# Enterprise API key (forwarded to MOTHER services)
ENTERPRISE_API_KEY=your-enterprise-api-key