Skip to content

Telegram bot which helps to organize online game sessions with buddies

License

Notifications You must be signed in to change notification settings

Kudoser/SteamTogether

Repository files navigation

SteamTogether

Telegram bot which helps to organize online game sessions with buddies.

Usage

Add @SteamTogetherBot to your group chat and type /help to get a list of available commands.

TODO: add here the output of the /help command.

Development

There are the following projects:

See the corresponding readme files for more info.

Database

Migrations

Go to SteamTogether.Core project:

> cd SteamTogether.Core

Make changes to models and create a migration:

> dotnet ef migrations Add MyMigrationName --project SteamTogether.Core.csproj --startup-project ../SteamTogether.Bot/SteamTogether.Bot.csproj

Apply changes to a database:

> dotnet ef database update --project SteamTogether.Core.csproj --startup-project ../SteamTogether.Bot/SteamTogether.Bot.csproj

EF migrations documentation link