Figure out what Patreons to mention in your podcast/video
  • Go 87.6%
  • CSS 10.7%
  • Shell 1.7%
Find a file
dependabot[bot] 3aaf95de0e build(deps): Bump the github-actions group with 2 updates
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](491e80760c...45a8b3b496)

---
updated-dependencies:
- dependency-name: marocchino/sticky-pull-request-comment
  dependency-version: 3.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: masesgroup/retrieve-changed-files
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-16 10:22:28 +00:00
.github build(deps): Bump the github-actions group with 2 updates 2026-03-16 10:22:28 +00:00
config Init 2024-09-29 22:02:27 +01:00
handlers Init 2024-09-29 22:02:27 +01:00
picker Init 2024-09-29 22:02:27 +01:00
static Init 2024-09-29 22:02:27 +01:00
templates fix(): Correct spelling 2024-09-29 22:31:57 +01:00
utils Init 2024-09-29 22:02:27 +01:00
.gitignore Init 2024-09-29 22:02:27 +01:00
.goreleaser.yaml Update .goreleaser.yaml 2025-01-27 12:47:41 +00:00
build.sh Init 2024-09-29 22:02:27 +01:00
go.mod build(deps): Bump golang.org/x/net from 0.51.0 to 0.52.0 in the go group 2026-03-16 10:21:04 +00:00
go.sum build(deps): Bump golang.org/x/net from 0.51.0 to 0.52.0 in the go group 2026-03-16 10:21:04 +00:00
LICENSE Init 2024-09-29 22:02:27 +01:00
main.go Init 2024-09-29 22:02:27 +01:00
README.md Init 2024-09-29 22:02:27 +01:00

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"