This is an example module written in PHP to be used with Harmony.
The only tool required is Docker Desktop.
# docker-compose.yaml
---
services:
proxy:
image: ghcr.io/applicreation/harmony-proxy:v0
ports:
- 80:80
core:
image: ghcr.io/applicreation/harmony-core:v0
volumes:
- ./.harmony/core:/root/.harmony:ro
example-php:
image: ghcr.io/applicreation/harmony-module-example-php:v0
# ./.harmony/core/config.yaml
---
modules:
- id: example-php
docker compose up