Initial Mebbling hub implementation

This commit is contained in:
2026-07-19 00:29:30 +08:00
commit e6ebdb0576
41 changed files with 2571 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
services:
web:
build: .
ports: ["8088:3000"]
env_file: .env
environment: { DATABASE_PATH: /app/data/hub.db }
volumes:
- ./data:/app/data
- ./public/uploads:/app/public/uploads
restart: unless-stopped
worker:
build: .
command: npm run worker
env_file: .env
environment: { DATABASE_PATH: /app/data/hub.db }
volumes:
- ./data:/app/data
- ./public/uploads:/app/public/uploads
restart: unless-stopped