A discord bot for baekjoon users to improve PS skill
- Personalized Recommendation of BOJ problems by analyzing PS skiils in Baekjoon
- Daily notification with a single personalized BOJ problem
- Improve your weakness by recommending problems
- Register BOJ ID for getting recommendation
Click the link below and grant permissions for the bot to join your server (require additional server to add bot):
Clone this repository and run:
git clone https://github.com/boaz-baekjoon/baekjoon-discord-bot.git
npm install
- Make your application in the discord developer site
- Create .env and fill the value with your discord bot token, and AWS RDS info
DISCORD_TOKEN=
RDS_ENDPOINT=
RDS_USER=
RDS_PASSWORD=
RDS_DB=
BASE_URL= #You need to create your own model server and put its address
- Type
npm test
to test the connection with your RDS - Type
npm start
to start the bot
For those who prefer using Docker container, follow the instruction:
- Create .env file and fill the value explained above.
- Build an image and run a container.
- Make sure to set the timezone in order to properly send daily problem.
docker build -t <image name> .
docker run -d <image name> -e TZ=<your time zone>