-
Notifications
You must be signed in to change notification settings - Fork 353
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
devenv up -d (detach) argument does not work #1159
Comments
Are you using flakes?
|
Yes, using inputs: inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
git-hooks = {
url = "github:cachix/git-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
devenv = {
url = "github:cachix/devenv";
inputs.nixpkgs.follows = "nixpkgs";
inputs.pre-commit-hooks.follows = "git-hooks";
};
}; I'm getting the output:
|
Oh, just noticed that we are using the workaround provided by #756, so that is probably why it doesn't support packages.devenv-up = {stdenv}: self.devShells.${stdenv.system}.default.config.procfileScript; |
Yeah if you'd like to use |
For ref: process-compose issue to add support for |
Is there any way to launch process-compose and mange services after launching with -d? |
According to https://devenv.sh/services,
devenv up
support detaching with the-d
argument,but the argument does nothing, and it is not documented either with
--help
, that it is an available option.The text was updated successfully, but these errors were encountered: