readme: Doesn't produce apps output anymore

This commit is contained in:
Sridhar Ratnakumar 2023-06-08 19:08:57 -04:00 committed by GitHub
parent 6700a98f25
commit 32bd49bb44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,11 +45,9 @@ process-compose.configs = {
};
```
`process-compose-flake` will generate the following two outputs for you:
- `apps.${system}.watch-server`
- `packages.${system}.watch-server`
`process-compose-flake` will generate the `packages.${system}.watch-server` output for you.
Using the `apps` output you can spin up the processes by running `nix run .#watch-server`.
You can then spin up the processes by running `nix run .#watch-server`.
The `package` output in turn can be used to make the `watch-server` command available in your `devShell`:
```nix