QR Code Generator Bot
A utility Discord bot that can generate QR codes with a given link. It can also add an emoji or small image to the center of the generated QR code.
You can add the bot with this link.
If you want to have everything local, first clone the repository:
git clone https://github.com/AtomicChocolate/qr-code-generator-bot.git
Add a .env file in the root of the repository:
CLIENTID=<the client id of your application>
TOKEN=<the secret token of your application's bot>
(if you want to debug the app, otherwise don't include these last 2 lines)
GUILDID=<the id of your server>
DEBUG=<true/false, if true the bot will only refresh slash commands in the given server to make development quicker>
Then, build and run it
npm install # Install dependencies
npm run build
npm start
Or build the Docker container:
docker-compose build
docker-compose up -d