mirror of
https://github.com/NoiTheCat/BirthdayBot.git
synced 2024-11-21 05:54:36 +00:00
Discord birthday reminder bot.
|
||
---|---|---|
.vscode | ||
ApplicationCommands | ||
BackgroundServices | ||
Data | ||
Docs | ||
.editorconfig | ||
.gitignore | ||
BirthdayBot.csproj | ||
Common.cs | ||
Configuration.cs | ||
License.txt | ||
Program.cs | ||
Readme.md | ||
ShardInstance.cs | ||
ShardManager.cs |
Birthday Bot
An automated way to recognize birthdays in your community!
Documentation, help, resources
Running your own instance
You need:
- .NET 6 (https://dotnet.microsoft.com/en-us/)
- PostgreSQL (https://www.postgresql.org/)
- EF Core tools (https://learn.microsoft.com/en-us/ef/core/get-started/overview/install#get-the-entity-framework-core-tools)
- A Discord bot token (https://discord.com/developers/applications)
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