One .repo file for dnf and yum. Upstream packages come through a pull-through cache that verifies every checksum; your own packages upload with a token; the policy gate decides what reaches a host.
The .repo file holds the literal token, so keep its permissions tight. If anonymous pull is on, the username and password lines can go.
The placeholders are your base URL and a token from the web UI. The guide covers the same steps for a single project, plain HTTP, verifying the change, and reverting it.
# /etc/yum.repos.d/dependably.repo
[dependably]
name=dependably
baseurl=https://repo.example.com/rpm/
enabled=1
username=user
password=<your token>The client sees a registry. Behind it, Dependably Packages stages each upstream artefact and refuses the ones that fail a check you configured.
The RPM guide continues with a verification step, publishing your own packages, and reverting the configuration if you need to.