Figure out what Patreons to mention in your podcast/video
- Go 87.6%
- CSS 10.7%
- Shell 1.7%
Bumps the github-actions group with 2 updates: [marocchino/sticky-pull-request-comment](https://github.com/marocchino/sticky-pull-request-comment) and [masesgroup/retrieve-changed-files](https://github.com/masesgroup/retrieve-changed-files).
Updates `marocchino/sticky-pull-request-comment` from 2.9.4 to 3.0.2
- [Release notes](https://github.com/marocchino/sticky-pull-request-comment/releases)
- [Commits](https://github.com/marocchino/sticky-pull-request-comment/compare/v2.9.4...v3.0.2)
Updates `masesgroup/retrieve-changed-files` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/masesgroup/retrieve-changed-files/releases)
- [Commits](
|
||
|---|---|---|
| .github | ||
| config | ||
| handlers | ||
| picker | ||
| static | ||
| templates | ||
| utils | ||
| .gitignore | ||
| .goreleaser.yaml | ||
| build.sh | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| main.go | ||
| README.md | ||
patreon-picker
Configuration
The configuration file is in the YAML format.
Although not a requirement, it is advisable to use the yamllint command to check the syntax of the file to prevent any errors. To do so, install the yamllint package, and then run the command:
yamllint /etc/picker.yaml
---
credentials:
id: "patreon_client_id"
secret: "patreon_client_secret"
redirect_url: "http://localhost:8080/auth"
# The levels are:
# Trace - shows everything, will likely overwhelm you!
# Debug - gives a good idea about what is going on
# Info - shows noteworthy events
# Warn - shows events that are not necessarily errors, but may be worth investigating
# Error - shows errors that are not fatal
# Fatal - shows fatal errors, this also crashes the service
# Panic - similar to fatal, but worse
# It is recommended to use info or warn for normal operation
log_level: Info
session:
cookie: "cookie"
name: "myapp"
connection:
port: "8080"
address: "0.0.0.0"