2020-04-23 03:28:51 +00:00
|
|
|
# HypeBot
|
|
|
|
A Discord bot for managing events. Uses [Serenity](https://github.com/serenity-rs/serenity) for the bot framework
|
2020-05-20 00:18:13 +00:00
|
|
|
and [Diesel](http://diesel.rs/) as an ORM.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
Creating an event can be done using the `create` command.
|
|
|
|
```
|
|
|
|
~create "Test Event" "5:35PM 2020-05-17" "A very cool test event!" "Cool Place"
|
|
|
|
```
|
|
|
|
|
|
|
|
This creates a draft event that the user can then review:
|
|
|
|
|
|
|
|
![create event example]
|
|
|
|
(https://i.imgur.com/9jTko9W.png)
|
|
|
|
|
|
|
|
A user can then using the `confirm` command to create the event and publish it:
|
|
|
|
|
|
|
|
![announcment]
|
|
|
|
(https://i.imgur.com/AeTE1v2.png)
|
|
|
|
|
|
|
|
Users who react with ✅ will then be sent reminders about the event as private message.
|
2020-04-23 03:28:51 +00:00
|
|
|
|
|
|
|
## Running
|
2020-04-23 03:30:52 +00:00
|
|
|
`./hype_bot config.toml`
|
2020-04-23 03:28:51 +00:00
|
|
|
|
2020-05-20 00:18:13 +00:00
|
|
|
## Config
|
2020-04-23 03:28:51 +00:00
|
|
|
```toml
|
|
|
|
# Database URL
|
|
|
|
db_url = "mysql://[user]:[password]@localhost/hypebot_db"
|
|
|
|
# Default image to show on the thumbnail
|
|
|
|
default_thumbnail_link = "https://i.imgur.com/wPdnvoE.png"
|
|
|
|
# Discord bot key
|
|
|
|
discord_key = ""
|
|
|
|
# Bot command prefix
|
|
|
|
prefix = "~"
|
|
|
|
# Channel ID to post to
|
|
|
|
event_channel = 0
|
|
|
|
# Permissions to use the bot
|
|
|
|
event_roles = 0
|
2020-04-24 00:45:02 +00:00
|
|
|
# Timezone to display events
|
|
|
|
event_timezone = "America/New_York"
|
2020-04-27 23:16:03 +00:00
|
|
|
# Path to logger
|
|
|
|
log_path = "hype_bot.log"
|
2020-04-23 03:28:51 +00:00
|
|
|
```
|