feat: add web UI and Docker setup for ZPLify

- HTTP server wrapping zplgfa library (port 4543)
- File upload with drag-and-drop, width/height resize, encoding selection, image edits
- /convert endpoint returns ZPL output; /preview returns image dimensions
- Dockerfile (multi-stage, Alpine) and docker-compose.yml
This commit is contained in:
2026-03-26 09:52:13 +01:00
parent b89d47a378
commit 05e60cdfe3
3 changed files with 482 additions and 0 deletions

6
docker-compose.yml Normal file
View File

@@ -0,0 +1,6 @@
services:
zplgfa:
build: .
ports:
- "4543:4543"
restart: unless-stopped