Skip to content

v0.55.0-RC1

Pre-release
Pre-release
Compare
Choose a tag to compare
@F1bonacc1 F1bonacc1 released this 10 Jul 21:21
· 316 commits to main since this release

⚠️ BETA version ⚠️

What Changed

  • Added the ability to start multiple replicas of a process (Issue #61)
processes:
  process_name:
    command: "sleep 2"
    log_location: ./log_file.{PC_LOG}.log  # <- {PC_LOG} will be replaced with replica number. If more than one replica and PC_LOG not specified, the replica number will be contaminated to the file end.
    replicas: 2  # <- NEW
  • Added the ability to scale processes on the fly from TUI (F2), CLI, REST or process-compose in Client mode (process-compose attach)
process-compose process scale process_name 3
  • Added ability to review process used ports (F3) (Issue #62)
  • Added check to prevent circular dependencies between processes
  • Added exit code 1 and proper message (not only to the log) in case of CLI command failure