Getting started
- Download the project
- In the web.config of the ChatHistoryBot project fill out the values for
MicrosoftAppId
,MicrosoftAppPassword
, andBotChatSecret
(your webchat secret from dev.botframework.com) - Create a database and put your connection string in the 'ConversationDataContextConnectionString' connection string of the web.config for the ChatHistoryBot project and the app.config for the ChatHistoryBot.data Note: you do not need any tables in your database they will be created in the next step
- In your Package Manager Console select ChatHistoryBot.Data as the Default project then run the following commands:
enable-migrations -EnableAutomaticMigrations -Force update-database
- Run the project and navigate to http://localhost:3980/WebChat/Bot