Initial commit

This commit is contained in:
Oli Passey
2025-12-10 18:07:21 +00:00
commit 1fb43156e8
58 changed files with 15656 additions and 0 deletions

27
docker-compose.yml Normal file
View File

@@ -0,0 +1,27 @@
version: '3.8'
services:
backend:
build: ./backend
container_name: wled-backend
ports:
- "3000:3000"
environment:
- PORT=3000
- DATABASE_URL=file:/data/wled.db
- LOG_LEVEL=info
volumes:
- wled-data:/data
restart: unless-stopped
frontend:
build: ./frontend
container_name: wled-frontend
ports:
- "80:80"
depends_on:
- backend
restart: unless-stopped
volumes:
wled-data: