Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 815 Bytes

README.md

File metadata and controls

44 lines (36 loc) · 815 Bytes

Discord Bot

A multi-purpose selfhosted Discord bot.

Goals

  • Selfhosted so you don't need to trust other bots
  • Provide everything a Discord server might need
  • Users can verify the source code
  • Multi-language support
  • Highly configurable

Getting Started

Here we will teach you how to setup your bot.

Requirements

Environment Variables

Copy the .env.example file to .env:

cp .env.example .env

Open .env file and fill these values:

DISCORD_TOKEN=
DATABASE_URL=

Build and Run

To build the whole project:

cargo build

Create database and run migrations:

cargo sqlx database setup

To run the project:

cargo run