The RecipeBot is intended to provide the following functionality in Discord as a bot:
- Formatting recipes according to a standardised format
- Persistence of recipes to allow retrieval based on tags or the type of dish
- Formatting annotated web recipes according to a standardised format
At the moment of writing the bot is capable of:
- Formatting user recipes according to a standard format
- Adding tags and category for a recipe
- Persisting and retrieving recipes
For more information about the commands within the bot, see the Wiki.
In order to run the RecipeBot, a config.json
file must be created next to the executable with the following content. The minimum content is listed below:
{
"Token": "{Your Discord token for the Bot}",
"ConnectionStrings":
{
"DefaultConnection": "Data Source={File path to the SQLite database}"
}
}
This is the Discord token as provided by the Discord Developer portal.
Key | Description |
---|---|
DefaultConnection | Set this to the path of the SQLite database to store and retrieve the data from. In case the database does not exist, the database is created by the application. |
This project was released under the GPLv3 license. A copy of this license can be found here.