Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1002 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 1002 Bytes

Linkify Bot

Linkify Bot adds a green hat to the intra profile pictures of 42 students

Quick Start

Ensure Docker is installed on your system. Visit Docker's official site for installation instructions if needed.

Setup

  1. Clone and Navigate:

    git clone [email protected]:Links-bde/linkify-bot.git
    cd linkify-bot
  2. Configure Environment: Create a .env file in the project root with your Discord bot token:

    DISCORD_TOKEN=<Your_Discord_Bot_Token>
    
  3. Prepare Profile Data: Generate a profile_pics.json in the project root, mapping usernames to profile picture links:

    {
      "username1": "profile_pic_link1",
      "username2": "profile_pic_link2"
    }

Build & Run

docker compose up -d

Note

The project was created quickly for fun as a random experiment. The code is ugly and inefficient. It's just a quick draft with some ChatGPT glued code.