Initial import: web4beginners editor and deployment setup

This commit is contained in:
2026-03-06 13:49:43 +01:00
commit fd9ea482bf
73 changed files with 4043 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
editor:
build:
context: .
dockerfile: Dockerfile
container_name: web4beginners-editor
ports:
- "4173:4173"
volumes:
- .:/app
working_dir: /app
command: ["php", "-d", "opcache.enable_cli=0", "-S", "0.0.0.0:4173", "scripts/editor_server.php"]
restart: unless-stopped