An open API service indexing awesome lists of open source software.

https://github.com/extiverse/bot

The @flagrow bot.
https://github.com/extiverse/bot

bot discodian discord flagrow flarum

Last synced: 5 months ago
JSON representation

The @flagrow bot.

Awesome Lists containing this project

README

          

# installation

Copy .env.example to .env and edit the required fields:

- BOT_TOKEN a discord bot app, see https://discordapp.com/developers/applications.
- FLAGROW_TOKEN a personal access token from flagrow.io, enclose with double quotes!
- BOT_OWNER, your unique discord id.

```bash
# install dependencies
$ npm ci
# start bot
$ npm run start
```

## pm2 deployment

```
git pull origin master

npm install
rm -rf package-lock.json

pm2 restart src/index.js --update-env
```