mirror of
https://git.femboyfinancial.jp/james/FemScoreboard.git
synced 2024-11-21 10:12:02 -08:00
25 lines
515 B
Markdown
25 lines
515 B
Markdown
# FemScoreboard
|
|
|
|
Web application/Discord bot which ranks users based on the reactions received on their messages.
|
|
|
|
## Project Setup
|
|
|
|
First, set up the Discord bot, syncing the message history before starting the bot to watch for live reactions.
|
|
|
|
```sh
|
|
cd discord
|
|
cp .env.example .env
|
|
vim .env # make appropriate changes
|
|
npm install
|
|
npm run sync
|
|
npm start
|
|
```
|
|
|
|
With the bot running, configure and start the web application from this directory:
|
|
|
|
```sh
|
|
vim .env # make appropriate changes
|
|
npm install
|
|
npm start
|
|
```
|