This is the Boolean Discord bot created by the conaticus community. It works on multiple servers and provides a variety of useful features.
- Discord.Net wrapper for Discord API
- Entity Framework with Postgres for database
Before contributing, please read carefully through our Contributing Guidelines so that your pull requests are more likely to be accepted into the codebase.
Ensure first that you have .NET 8.0 installed.
- Clone the repository
- CD into
/Boolean
- Copy the
appsettings.example.json
and rename it toappsettings.json
- Enter the necessary values into the
appsettings.json
file- Note that
TestGuildId
is only required in the debug build
- Note that
- Run
dotnet tool install --global dotnet-ef
to install entity framework tool - Run
dotnet ef migrations add Initial
we need you to keep track of your own migrations (you might need to build the program first) - Run
dotnet ef database update