> ## Documentation Index
> Fetch the complete documentation index at: https://sysg.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

# Quickstart

Get systemg running in 60 seconds.

## Install

```bash theme={null}
$ curl --proto '=https' --tlsv1.2 -fsSL https://sh.sysg.dev/ | sh
```

## Create a configuration

```yaml theme={null}
version: "1"
services:
  hello:
    command: "python -m http.server 8080"
```

Save as `systemg.yaml`.

## Start your service

```bash theme={null}
$ sysg start
```

Your web server is now running at [http://localhost:8080](http://localhost:8080).

## Check status

```bash theme={null}
$ sysg status
```

```
SERVICE  STATUS   PID    UPTIME
hello    running  42309  3s
```

## View logs

```bash theme={null}
$ sysg logs --service hello
```

## Stop the project

```bash theme={null}
$ sysg stop
```

## What's next

* [Configure multiple services](how-it-works/configuration) with dependencies
* [Run services in the background](how-it-works/commands/start#daemon-mode) with `--daemonize`
* [Set up automatic restarts](how-it-works/configuration#restart-policies) for production
