feat: add basic process compose module

This commit is contained in:
technofab 2025-12-19 15:04:26 +01:00
parent a4295c3cdb
commit 25fb9162ff
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
4 changed files with 84 additions and 0 deletions

View file

@ -54,6 +54,14 @@ in {
};
};
process-compose.config.processes = {
hello.command = "echo 'Hello World'";
pc = {
command = "echo 'From Process Compose'";
depends_on.hello.condition = "process_completed";
};
};
cocogitto.config.changelog = {
path = "CHANGELOG.md";
template = "remote";