Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- #67: Add `ready_log_line`
- #226: Add `availability.exit_on_skipped`
- #77: Add `is_tty`
- #112: Add `is_interactive`
- Notable changes
- #58: Obviate IFD by switching to JSON config
- Fixes
Expand Down
10 changes: 10 additions & 0 deletions nix/process-compose/settings/process.nix
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,16 @@ in
- In TUI mode, a local process will be started.
'';
};
is_interactive = mkOption {
type = types.nullOr types.bool;
default = null;
example = true;
description = ''
Interactive processes allow you to interact directly with a running process through the TUI. This is useful for processes that require user input, such as a REPL, a debugger, or a command-line editor.

When a process is configured as interactive, Process Compose allocates a pseudo-terminal (PTY) for it and allows you to attach to its standard input and output.
'';
};
is_tty = mkOption {
type = types.nullOr types.bool;
default = null;
Expand Down
Loading