Go to file
2019-07-10 16:19:27 +02:00
.vscode bot: trace startup sequence to stdout 2019-04-20 22:25:03 +02:00
docs Add API documentation to docs 2019-07-10 13:20:57 +02:00
PluralKit.API Fix API system fronter endpoint crashing on system with no switches 2019-07-10 12:54:54 +02:00
PluralKit.Bot Yes. 2019-07-10 13:57:59 +02:00
PluralKit.Core Clarify datetime format in switch move error 2019-07-10 11:09:08 +02:00
PluralKit.Web Add basic API, only with system endpoints 2019-07-09 20:39:29 +02:00
scripts Fix the backup scripts (cronjob didn't fire for a month...) 2018-11-07 21:16:34 +01:00
web web: reduce bundle size 2019-04-19 20:41:18 +02:00
.gitignore Add basic documentation site 2019-07-03 10:25:24 +02:00
docker-compose.yml Add API container to Composefile 2019-07-10 12:37:47 +02:00
Dockerfile Fix Dockerfile not including API subdirectory 2019-07-10 08:55:24 +02:00
pluralkit.conf.example Actually add the example config file 2019-07-01 01:16:44 +02:00
PluralKit.sln Add basic API, only with system endpoints 2019-07-09 20:39:29 +02:00
README.md Update README 2019-07-10 16:19:27 +02:00

PluralKit

PluralKit is a Discord bot meant for plural communities. It has features like message proxying through webhooks, switch tracking, system and member profiles, and more.

Do you just want to add PluralKit to your server? If so, you don't need any of this. Use the bot's invite link: https://discordapp.com/oauth2/authorize?client_id=466378653216014359&scope=bot&permissions=536995904

PluralKit has a Discord server for support, feedback, and discussion: https://discord.gg/PczBt78

Requirements

Running the bot requires .NET Core (v2.2) and a PostgreSQL database.

Configuration

Configuring the bot is done through a JSON configuration file. An example of the configuration format can be seen in pluralkit.conf.example. The configuration file needs to be placed in the bot's working directory (usually the repository root) and must be called pluralkit.conf.

The configuration file is in JSON format (albeit with a .conf extension), and the following keys (using . to indicate a nested object level) are available:

The following keys are available:

  • PluralKit.Database: the URI of the database to connect to (in ADO.NET Npgsql format)
  • PluralKit.Bot.Token: the Discord bot token to connect with

Running

Docker

Running PluralKit is pretty easy with Docker. The repository contains a docker-compose.yml file ready to use.

  • Clone this repository: git clone https://github.com/xSke/PluralKit
  • Create a pluralkit.conf file in the same directory as docker-compose.yml containing at least a PluralKit.Bot.Token field
  • Build the bot: docker-compose build
  • Run the bot: docker-compose up

Manually

  • Install the .NET Core 2.2 SDK (see https://dotnet.microsoft.com/download)
  • Clone this repository: git clone https://github.com/xSke/PluralKit
  • Run the bot: dotnet run --project PluralKit.Bot

License

This project is under the Apache License, Version 2.0. It is available at the following link: https://www.apache.org/licenses/LICENSE-2.0