Get web server going

This commit is contained in:
2025-12-04 05:23:33 -08:00
parent 6f5cf83a56
commit 2254d293a0
14 changed files with 1916 additions and 48 deletions
+14
View File
@@ -0,0 +1,14 @@
version: '3.8'
services:
web:
build:
context: .
pull: true
ports:
- "5000:5000"
volumes:
- ./data:/data
environment:
- FLASK_ENV=development
restart: unless-stopped