Update to v0.7.0 #30

Merged
serversdown merged 31 commits from dev into main 2026-03-08 03:13:20 -04:00
3 changed files with 10 additions and 25 deletions
Showing only changes of commit 17b3f91dfc - Show all commits

View File

@@ -1,3 +1,5 @@
docker-compose.override.yml
# Python cache / compiled # Python cache / compiled
__pycache__ __pycache__
*.pyc *.pyc

View File

@@ -0,0 +1,8 @@
services:
terra-view:
environment:
- ENVIRONMENT=development
ports:
- "1001:8001"
volumes:
- ./data-dev:/app/data

View File

@@ -24,30 +24,6 @@ services:
retries: 3 retries: 3
start_period: 40s 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 (Sound Level Meter Manager) ---
slmm: slmm:
build: build:
@@ -73,4 +49,3 @@ services:
volumes: volumes:
data: data:
data-dev: