2023-01-23 02:50:19 +00:00
|
|
|
# World Time
|
|
|
|
A social time zone reference tool!
|
|
|
|
|
|
|
|
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/J3J65TW2E)
|
|
|
|
|
|
|
|
#### Documentation, help, resources
|
|
|
|
* [Main website, user documentation](https://noithecat.dev/bots/WorldTime)
|
|
|
|
* [Official server](https://discord.gg/JCRyFk7)
|
|
|
|
|
|
|
|
#### Running your own instance
|
|
|
|
You need:
|
2024-05-10 06:06:03 +00:00
|
|
|
* .NET 8 (https://dotnet.microsoft.com/en-us/)
|
2023-01-23 02:50:19 +00:00
|
|
|
* PostgreSQL (https://www.postgresql.org/)
|
|
|
|
* 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:
|
|
|
|
```jsonc
|
|
|
|
{
|
|
|
|
"BotToken": "your bot token here",
|
|
|
|
"SqlHost": "localhost", // optional
|
|
|
|
"SqlDatabase": "worldtime", // optional
|
|
|
|
"SqlUser": "worldtime", // required
|
|
|
|
"SqlPassword": "mypassword" // required; no other authentication methods are currently supported
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Then run the following commands:
|
|
|
|
```sh
|
|
|
|
$ dotnet restore
|
2024-05-10 06:06:03 +00:00
|
|
|
$ dotnet tool restore
|
2023-01-23 02:50:19 +00:00
|
|
|
$ dotnet ef database update -- -c path/to/config.json
|
|
|
|
```
|
|
|
|
|
|
|
|
And finally, to run the bot:
|
2024-05-10 06:06:03 +00:00
|
|
|
```sh
|
2023-01-23 02:50:19 +00:00
|
|
|
$ dotnet run -c Release -- -c path/to/config.json
|
|
|
|
```
|