Email-based RSS digest generator
| Web UI | |
|---|---|
![]() | ![]() |
- Multi-user support
- Option to choose between daily or weekly digests that are sent at specific times of day
- OPML import/export
- OIDC integration
docker pull ghcr.io/codemicro/walrss:latest
mkdir walrss-data
nano walrss-data/config.yaml # You'll have to fill in the required fields detailed below
docker run -d -v $(pwd)/walrss-data:/run -p 8080:8080 ghcr.io/codemicro/walrss:latestYou must have an up-to-date version of the Go toolchain installed. Check go.mod for the minimum required version.
git clone https://github.com/codemicro/walrss.git;cd walrss
go build -o walrssServer github.com/codemicro/walrss/walrssmkdir walrss-data
nano walrss-data/config.yaml # You'll have to fill in the required fields detailed below
WALRSS_DIR="./walrss-data" ./walrssServer
# now go to http://127.0.0.1:8080Your config.yaml file lives in your data directory, which is specified by the WALRSS_DIR environment variable (default is ./ or /run if you're using Docker). Below is a list of the possible options you can set within it.
server:
host: 127.0.0.1port: 8080# externalURL is the URL that your instance of Walrss is accessible at# This is a required fieldexternalURL: "http://127.0.0.1:8080"email:
# These are required fieldshost: "smtp.sendgrid.net"port: 587from: "Walrss <walrss@yourdomain.com>"# These fields are not requiredtls: ""# valid values are: starttls, tls, no - default: starttlspassword: "yourapikey"username: "apikey"platform:
disableRegistration: falsedisableSecureCookies: falsecontactInformation: "https://example.com"# optional. will be included in the user agent if set.oidc:
enable: falseclientID: "yourclientid"clientSecret: "yourclientsecret"issuer: "https://sso.example.com/"- Feed categories
- Administrator users
- Account controls (eg password reset, change password, etc)

