merge v0.7.1 dev into main. #31

Merged
serversdown merged 9 commits from dev into main 2026-03-12 18:40:16 -04:00
3 changed files with 20 additions and 30 deletions
Showing only changes of commit 3a411d0a89 - Show all commits

3
.gitignore vendored
View File

@@ -210,6 +210,7 @@ __marimo__/
# SQLite database files
*.db
*.db-journal
data/
/data/
/data-dev/
.aider*
.aider*

View File

@@ -0,0 +1,18 @@
services:
terra-view:
image: terra-view-dev
build: .
ports:
- "1001:8001"
volumes:
- ./data-dev:/app/data
environment:
- ENVIRONMENT=development
- SLMM_BASE_URL=http://host.docker.internal:9100
slmm:
image: slmm-dev
volumes:
- ../slmm/data-dev:/app/data
environment:
- PORT=9100

View File

@@ -1,9 +1,7 @@
services:
# --- TERRA-VIEW PRODUCTION ---
terra-view:
build: .
container_name: terra-view
ports:
- "8001:8001"
volumes:
@@ -24,36 +22,10 @@ services:
retries: 3
start_period: 40s
# --- TERRA-VIEW DEVELOPMENT ---
terra-view-dev:
build: .
container_name: terra-view-dev
ports:
- "1001:8001"
volumes:
- ./data-dev:/app/data
environment:
- PYTHONUNBUFFERED=1
- ENVIRONMENT=development
- SLMM_BASE_URL=http://host.docker.internal:8100
restart: unless-stopped
depends_on:
- slmm
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8001/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
# --- SLMM (Sound Level Meter Manager) ---
slmm:
build:
context: ../slmm
dockerfile: Dockerfile
container_name: slmm
network_mode: host
volumes:
- ../slmm/data:/app/data
@@ -71,4 +43,3 @@ services:
volumes:
data:
data-dev: