File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
nix/process-compose/settings Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 1111 - ~~ #54 : Add ` apiServer ` option to control REST API server~~
1212 - $60: Add ` httpServer.{enable, port, uds} ` options to control the HTTP server.
1313 - #56 : Add ` preHook ` and ` postHook ` for running commands before and after launching process-compose respectively.
14+ - #67 : Add ` ready_log_line `
1415- Notable changes
1516 - #58 : Obviate IFD by switching to JSON config
1617- Fixes
Original file line number Diff line number Diff line change 2828 "process_completed"
2929 "process_completed_successfully"
3030 "process_healthy"
31+ "process_log_ready"
3132 "process_started"
3233 ] ;
3334 example = "process_healthy" ;
133134 The settings used to check if the process is alive.
134135 '' ;
135136 } ;
137+ ready_log_line = mkOption {
138+ type = types . nullOr types . str ;
139+ default = null ;
140+ example = "process is ready" ;
141+ description = ''
142+ A string to search for in the output of the command that indicates
143+ the process is ready. String will be part of a regex '.*{ready_log_line}.*'.
144+ This should be used for long running processes that do not have a
145+ readily accessible check for http or similar other checks.
146+ '' ;
147+ } ;
136148
137149 namespace = mkOption {
138150 type = types . str ;
You can’t perform that action at this time.
0 commit comments