Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

b68dev/Discord.RSS

 
 

Repository files navigation

Discord.RSS

Driven by the lack of comprehensive RSS bots available, I have decided to try my hand at creating one of my own. Designed with as much customization as possible for both users and bot hosters, while also (or should be) easy to understand.

All documentation can be found at https://github.com/synzen/Discord.RSS/wiki.

Looking for a non-Discord version of this bot? See https://github.com/synzen/feedtracker

Publicly Hosted Instance

Don't want to bother hosting your own instance? Use the publicly hosted one!

https://discordapp.com/oauth2/authorize?client_id=268478587651358721&scope=bot&permissions=19456

Setting Up via Cloning Repository (for most people)

See https://github.com/synzen/Discord.RSS/wiki/Setup

Setting Up Programatically

npm install discord.rss
const DiscordRSS = require('discord.rss')

// Optional config overrides
const config = {
  database: {
    uri: './sources'
  }
}

const drss = new DiscordRSS.ClientManager(config)
drss.login('token')

For best performance, use a mongodb database.uri instead of a directory.

Web Interface

For instructions on how to get the web interface working, see https://github.com/synzen/Discord.RSS/tree/dev/src/web

UI Screenshot

Deploy to Heroku

You can deploy the bot in a simple way to Heroku using the button below. Click here for detailed instructions.

Deploy

If you want to deploy manually you can follow this guide.

Contributing

Read the contribution guidelines. All the latest updates are commited to the dev branch.

Testing

Run npm test

Locales

To add or contribute to menu translations (locales):

  1. If the locale JSON doesn't exist in src/locales, create one by running node scripts/locales/create.js
  2. Open the relevant locale file in src/locales
  3. Add your translations (use the en-US.json locale as reference)
  4. Verify your file(s) by running node scripts/locales/verify.js and make appropriate fixes
  5. Make a pull request for your changes!

About

Discord RSS bot with customizable feeds

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 78.7%
  • CSS 21.2%
  • Other 0.1%