Skip to content

Commit

Permalink
README: Add advanced section with running in background
Browse files Browse the repository at this point in the history
Closes #11
  • Loading branch information
martomi committed Apr 13, 2021
1 parent 022d4e8 commit e7d1d54
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,17 @@ tests described in the notification section above.
You can enable more verbose logging from `config.yaml` by changing `INFO` to `DEBUG`. You should see logs for every
keep-alive event from the harvester.

## Advanced Stuff

### Running `chiadog` in the background

```
nohup python3 -u main.py --config config.yaml > output.log &
```

To stop chiadog, you can find the Process ID (PID) via `ps aux | grep main.py` and then softly interrupt the process
with `kill -SIGINT <pid_here>`.

# Contributing

Contributions are always welcome! Please refer to [CONTRIBUTING](CONTRIBUTING.md) documentation.

0 comments on commit e7d1d54

Please sign in to comment.