KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
telegram-bot
★ 8
Open GitHub ↗
Based on .NET Core framework.
Download README (.md)
Explore Similar Repositories
react-redux-pwa-template
:
Template for PWA by React/Redux
scichain
:
SciChain: Science on the Blockchain
piSchoolBell
:
This runs a Raspberry Pi as a controller for a school bell. It makes the school bell ring at the right times taking the calendar into consideration.
think-auth
:
No description available.
linkchecker
:
Recursively crawls a website and checks that URLs return 200.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
telegram-bot
?
Download (.md)
# Interactive telegram bot ## About A simple example of the implementation of the dialog telegram bot. Users can create responses to certain messages themselves. The whole essence of the application is shown in the following screenshot:  ## Setup The description presumes that you already have a bot and it’s token. If not, please create one. You’ll find several explanations on the internet how to do this. ## Add Migration We can execute the migration command using NuGet Package Manger Console as well as dotnet CLI (command line interface). In Visual Studio, open NuGet Package Manager Console from Tools -> NuGet Package Manager -> Package Manager Console and enter the following command: add-migration init If you use dotnet CLI, enter the following command: dotnet ef migrations add init ## Update your database After creating a migration, we still need to create the database using the update-database command in the Package Manager Console, as below. update-database Enter the following command in dotnet CLI. dotnet ef database update ## Build project Now you can start the Bot in a local instance.