Discord birthday reminder bot.
Find a file
2023-09-09 10:46:45 -07:00
.vscode Explicit config path in args 2023-01-16 21:28:05 -08:00
ApplicationCommands Drop use of discriminator if none exists 2023-09-04 16:58:45 -07:00
BackgroundServices Allow configuration of certain time-based values 2023-05-27 18:07:45 -07:00
Data Replace preconditions with Discord permissions 2023-02-03 22:55:00 -08:00
Docs Update documentation site text 2023-01-24 19:42:57 -08:00
.editorconfig Import updated code style from other project 2022-05-25 08:52:51 -07:00
.gitignore First commit for C# rewrite 2020-04-02 11:38:26 -07:00
BirthdayBot.csproj Update Discord.Net 2023-09-04 16:35:03 -07:00
Common.cs Use display name instead of username 2023-09-09 10:46:45 -07:00
Configuration.cs Add option to disable connection logging 2023-05-27 18:46:28 -07:00
License.txt Update copyright date / contact email 2023-02-19 10:19:17 -08:00
Program.cs Better handling of program shutdown 2023-06-11 18:10:46 -07:00
Readme.md Add project-centric readme 2023-01-24 19:56:21 -08:00
ShardInstance.cs Add option to disable connection logging 2023-05-27 18:46:28 -07:00
ShardManager.cs Drop use of discriminator if none exists 2023-09-04 16:58:45 -07:00

Birthday Bot

An automated way to recognize birthdays in your community!

ko-fi

Documentation, help, resources

Running your own instance

You need:

Get your bot token and set up your database user and schema, then create a JSON file containing the following:

{
    "BotToken": "your bot token here",
    "SqlHost": "localhost", // optional
    "SqlDatabase": "birthdaybot", // optional
    "SqlUser": "birthdaybot", // required
    "SqlPassword": "birthdaybot" // required; no other authentication methods are currently supported
}

Then run the following commands:

$ dotnet restore
$ dotnet ef database update -- -c path/to/config.json

And finally, to run the bot:

$ dotnet run -c Release -- -c path/to/config.json