chore: scaffold project skeleton (pyproject, Docker, systemd, README)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
floppyrj45
2026-04-19 15:20:10 +00:00
parent 20e19239eb
commit f04d7c90c9
9 changed files with 295 additions and 1 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
nats:
image: nats:2.10-alpine
command: ["-js", "-m", "8222"]
ports:
- "4222:4222"
- "8222:8222"
restart: unless-stopped
analyzer:
build: .
depends_on:
- nats
environment:
NATS_URL: nats://nats:4222
MCAP_DIR: /data/mcap
POLL_INTERVAL_S: 30
LOG_LEVEL: INFO
volumes:
- ./data/mcap:/data/mcap
restart: unless-stopped