├── .envrc ├── .github ├── CODE_OF_CONDUCT.md └── workflows │ └── ci.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dev ├── flake.lock └── flake.nix ├── doc ├── flake.lock ├── flake.nix ├── index.md └── index.yaml ├── example ├── flake.lock └── flake.nix ├── flake.nix ├── justfile ├── nix ├── flake-module.nix ├── lib.nix └── process-compose │ ├── cli.nix │ ├── default.nix │ ├── defaults.nix │ ├── settings │ ├── command.nix │ ├── default.nix │ ├── environment.nix │ ├── log-config.nix │ ├── probe.nix │ ├── process.nix │ └── vars.nix │ └── test.nix └── vira.hs /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/.envrc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/README.md -------------------------------------------------------------------------------- /dev/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/dev/flake.lock -------------------------------------------------------------------------------- /dev/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/dev/flake.nix -------------------------------------------------------------------------------- /doc/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/doc/flake.lock -------------------------------------------------------------------------------- /doc/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/doc/flake.nix -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/doc/index.yaml -------------------------------------------------------------------------------- /example/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/example/flake.lock -------------------------------------------------------------------------------- /example/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/example/flake.nix -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/justfile -------------------------------------------------------------------------------- /nix/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/flake-module.nix -------------------------------------------------------------------------------- /nix/lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/lib.nix -------------------------------------------------------------------------------- /nix/process-compose/cli.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/cli.nix -------------------------------------------------------------------------------- /nix/process-compose/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/default.nix -------------------------------------------------------------------------------- /nix/process-compose/defaults.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/defaults.nix -------------------------------------------------------------------------------- /nix/process-compose/settings/command.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/settings/command.nix -------------------------------------------------------------------------------- /nix/process-compose/settings/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/settings/default.nix -------------------------------------------------------------------------------- /nix/process-compose/settings/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/settings/environment.nix -------------------------------------------------------------------------------- /nix/process-compose/settings/log-config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/settings/log-config.nix -------------------------------------------------------------------------------- /nix/process-compose/settings/probe.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/settings/probe.nix -------------------------------------------------------------------------------- /nix/process-compose/settings/process.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/settings/process.nix -------------------------------------------------------------------------------- /nix/process-compose/settings/vars.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/settings/vars.nix -------------------------------------------------------------------------------- /nix/process-compose/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/nix/process-compose/test.nix -------------------------------------------------------------------------------- /vira.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Platonic-Systems/process-compose-flake/HEAD/vira.hs --------------------------------------------------------------------------------