A discord bot to send feed updates
The following commands are supported:
Command | Description |
---|---|
$feed-add <name> <link> |
This command adds a new feed to the current channel. |
$feed-list |
This command lists all feeds in the current server with the following information: id, name, channel id and link. |
$feed-remove <id> |
This command removes the feed addressed to the given id. |
-
Create a
.env
file following the example file.env.example
-
Install the dependencies
$ npm install
-
Run the project
$ npm start
This project follows the common open source strategy.
- Get an issue;
- Create a branch and work on it;
- When the job is done, create a merge request;
- Resolve all requests of the reviewer;
- Merge it!
Our commit naming follows the conventional commits guide.
As convention, whe should create branches whith the following pattern:
<type>/issue-<number>-<branch-name-here>
When it does not have a related issue, the number should be 0;
The types could be: feature, docs, fix, chore, refactor;