Skip to main content

Commands

Quick reference

$ sysg start                     # Launch services
$ sysg stop                      # Stop services
$ sysg restart                   # Restart services
$ sysg status                    # Check health
$ sysg logs                      # View output
$ sysg inspect -s api             # View metrics
$ sysg start --parent-pid 123 --name w1 -- cmd   # Create child
$ sysg purge                     # Clear all state
:::warning Deprecated sysg spawn is deprecated. Use sysg start --parent-pid ... for child-process workflows. ::: All commands accept --log-level (debug, info, warn, error).

Auto-discovery

After first start, systemg remembers your config:
$ sysg start --config app.yaml
$ sysg status                 # Uses app.yaml automatically

Daemon mode

Run supervisor in background:
$ sysg start --daemonize
$ sysg status                 # Communicates with daemon
$ sysg stop                   # Stops services and daemon

Service-specific operations

Most commands accept a service name:
$ sysg restart --service api
$ sysg logs --service worker
$ sysg stop --service redis

See also