Name Date Size #Lines LOC

..--

data/H23-Apr-2026-6238

media/H23-Apr-2026-377375

.gitignoreH A D13-Apr-202617 32

README.mdH A D19-Apr-2026672 2416

cleanup-test-env.shH A D13-Apr-2026327 1410

docker-compose.ymlH A D19-Apr-2026549 2120

run-tests.shH A D19-Apr-20261.3 KiB4131

start-test-env.shH A D13-Apr-2026663 2317

README.md

1# DokuWiki BPMN.io Plugin — Docker Test Environment
2
3Docker Compose setup for testing the plugin in a real DokuWiki instance.
4
5## Usage
6
7```bash
8# Start
9./start-test-env.sh
10
11# Run basic checks
12./run-tests.sh
13
14# Stop
15./cleanup-test-env.sh          # keep volumes
16./cleanup-test-env.sh --full   # remove everything
17```
18
19DokuWiki: http://localhost:8080
20- BPMN: http://localhost:8080/doku.php?id=test:bpmn-test
21- DMN: http://localhost:8080/doku.php?id=test:dmn-test
22
23The plugin is mounted read-only from the parent directory. Test pages are mounted from `test/data` and shared media fixtures are mounted from `test/media`. Edit files and refresh the browser to see changes.
24