Go to file
2024-05-25 19:05:55 +02:00
2024-05-25 19:03:11 +02:00
2024-05-17 23:39:37 +02:00
2024-05-25 19:03:11 +02:00
2024-05-25 19:05:55 +02:00
2024-05-18 04:13:47 +02:00
2024-05-17 21:29:09 +00:00
2024-05-18 02:34:22 +02:00
2024-05-18 04:13:47 +02:00

join2create Discord Bot in Docker

Join2Create is a Discord bot designed to facilitate JoinToCreate functionality seamlessly within your Discord channels.

Getting Started

  1. Create a Discord Application: Visit the Discord Developer Portal and create a new application. Make sure to grant the application sufficient permissions!

    Scope: Application.commands, bot

    Bot Permissions:

    I gave it Admin but Manage Server/Manage Channels probably works too.

  2. Invite the Bot to Your Server: After creating the application, invite the bot to your Discord server using the OAuth2 URL provided in the Discord Developer Portal.

  3. Run in Docker: Join2Create is containerized with Docker for easy deployment. To run the bot in Docker, follow these steps:

    • Ensure Docker is installed on your system.
    • Open docker-compose.yml and input your bot token and channel ID.
    • Alternatively, you can use the following Docker command:
    docker run -d \
      --name discord-bot \
      -e BOT_TOKEN=YOUR_BOT_TOKEN_HERE \
      -e JOINTOCREATE_CHANNEL_ID=YOUR_JOINTOCREATE_CHANNEL_ID_HERE \
      git.degnedict.de/bene/join2create:latest
    

    Or use the one-liner version:

    docker run -d --name discord-bot -e BOT_TOKEN=YOUR_BOT_TOKEN_HERE -e JOINTOCREATE_CHANNEL_ID=YOUR_JOINTOCREATE_CHANNEL_ID_HERE git.degnedict.de/bene/join2create:latest
    

Description
A simple Discord Bot to provide JoinToCreate functionality.
Readme 63 KiB
Languages
Python 85.3%
Dockerfile 14.7%