-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (27 loc) · 825 Bytes
/
Copy path.env.example
File metadata and controls
31 lines (27 loc) · 825 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
27
28
29
30
31
# Application Settings
APP_NAME=HBR Backend
APP_VERSION=0.1.0
DEBUG=false
# Server Configuration
HOST=0.0.0.0
PORT=8000
# Database Configuration
DB_HOST=db
DB_PORT=5432
DB_USER=hbr_user
DB_PASSWORD=hbr_password
POSTGRES_DB=hbr_db
DATABASE_URL=postgresql://hbr_user:hbr_password@db:5432/hbr_db
# Data Directories
# In Docker: use /app/data/raw and /app/data/logs
# Locally: use relative paths like ./data/raw or ./data/logs
DATA_DIR=./data/raw
LOG_DIR=./data/logs
# Inference Service
# Absolute path to model checkpoint inside the container.
# Example: /app/data/logs/checkpoints/baseline_epoch_50.pth
INFERENCE_CHECKPOINT=
# Path to runtime YAML config (relative to /app, default is used if unset).
INFERENCE_CONFIG=configs/data_pipeline.yml
# Device override for inference: auto | cpu | cuda | mps
INFERENCE_DEVICE=auto