Skip to main content

Quickstart

Get systemg running in 60 seconds.

Install

$ curl --proto '=https' --tlsv1.2 -fsSL https://sh.sysg.dev/ | sh

Create a configuration

version: "1"
services:
  hello:
    command: "python -m http.server 8080"
Save as systemg.yaml.

Start your service

$ sysg start
Your web server is now running at http://localhost:8080.

Check status

$ sysg status
SERVICE  STATUS   PID    UPTIME
hello    running  42309  3s

View logs

$ sysg logs --service hello

Stop everything

$ sysg stop

What’s next