Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 880 Bytes

README.md

File metadata and controls

12 lines (12 loc) · 880 Bytes

BotFramework-ChatHistoryBot

Getting started

  1. Download the project
  2. In the web.config of the ChatHistoryBot project fill out the values for MicrosoftAppId, MicrosoftAppPassword, and BotChatSecret(your webchat secret from dev.botframework.com)
  3. 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
  4. In your Package Manager Console select ChatHistoryBot.Data as the Default project then run the following commands:
    enable-migrations -EnableAutomaticMigrations -Force
    update-database
    
  5. Run the project and navigate to http://localhost:3980/WebChat/Bot