This bot was built for the devRant Discord community. Currently uses DJS v13.
- Verification - It uses the devRant API to verify the user by providing a one time token required for verification.
- devRant posts - Fetches rants, stories and collabs from the devRant API.
- Summarizes links - Links are summarized using the
smmry
API.
......and more.
Do check out the verification wiki page to understand how users can verify themselves.
To ease the process of development for everyone without any NodeJs conflicts, Docker has been utilized.
Pre-requisites -
- To build using Docker ensure you have it installed
- Build a Docker image using
docker build -t devrant .
(yes, even that fullstop). This will build a custom Docker image with the name devrant - To create containers from the image and see changes in realtime just run
docker run -i -v $(pwd):/app devrant
- To stop the Docker container get the ID using
docker ps
(in a new terminal) and then rundocker stop <id>