sudo pacman -S dotnet-sdksudo apt-get install -y dotnet-sdk-9.0Create .env file in DiskayBot.Bot, and put your bot token:
TelegramBot__Token="YOUR_BOT_TOKEN"In file appsettings.json, you need configurate the services:
"Configuration": {
"Services": {
"DiskayMemory": {
"url": "http://localhost:8080" // Put your service url
},
"Redis": {
"url": "localhost:6379" // Put your service url
}
}
}In the bot folder (DiskayBot.Bot)
dotnet run