This is an example module written in Node 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-node:
image: ghcr.io/applicreation/harmony-module-example-node:v0
# ./.harmony/core/config.yaml
---
modules:
- id: example-node
docker compose up