Add Docker deployment support, richer Selenium/LED pattern tests, in-browser diagnostics, responsive UI improvements, and 16x16 panel simulation tooling to speed iteration and hardware-style prototyping. Made-with: Cursor
17 lines
345 B
YAML
17 lines
345 B
YAML
services:
|
|
python-editor:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8080:8080"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- WORKSPACE_ROOT=/app/workspace
|
|
- AUTH_DATABASE_PATH=/app/data/editor.db
|
|
volumes:
|
|
- ./workspace:/app/workspace
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|