Add meal tracker app: Flask + SQLite with auth, dashboard, 31 passing tests, Docker Compose

This commit is contained in:
agentbox
2026-07-31 21:25:59 +00:00
parent aabc83281b
commit d58828e0ef
17 changed files with 1214 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
services:
meal-tracker:
build:
context: .
dockerfile: Dockerfile.meal
ports:
- "5000:5000"
volumes:
- meal-data:/data
environment:
- SECRET_KEY=${SECRET_KEY:-change-me-in-production}
restart: unless-stopped
volumes:
meal-data: