Skip to content

A bot to help query and manage work items across GitHub and Visual Studio Team Services.

Notifications You must be signed in to change notification settings

WrathOfZombies/workbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Work Bot

A bot to help query and manage work items across GitHub and Visual Studio Team Services.

Requirements

Download and install the following:

You can get either:

Also some useful extensions for VSCode include:

  • C#
  • C# Extensions
  • GitLens
  • NuGet Package Manager

Getting started

Clone the repository using:

git clone https://github.com/WrathOfZombies/workbot

After cloning the repository run the following to download and install all the required dependencies:

dotnet restore

Project Structure

WorkBot

Contains the ASP.Net Core implemenation for the Bot Service and also deals with authentication of the Bot.

Note: Bot Authentication here refers authenticaiton between our service and the Bot Framework so that our service is allowed to send and receive messages to the user

WorkBot.Services

Contains the various integration services that WorkBot supports and aggregation logic to determine the right service to be invoked at runtime. Also provides definiton for what models the services would depend on and what models they would aggregate into.

WorkBot.Core

Contains the core logic to help the bot achieve tasks such as speech determination, routing, dialogs, forms etc.

Running locally

Create an appsettings.json file in the WorkBot project and paste the following into it:

{
  "Logging": {
    "IncludeScopes": false,
    "LogLevel": {
      "Default": "Warning"
    }
  },
  "BotConfiguration": {
    "AppId": "",
    "AppSecret": "",
    "Name": "Work Bot",
    "Handle": "mywork"
  }
}

Note: If you are a part of the core dev group, you'll be able to find the CLIENT_ID and CLIENT_SECRET in Teams.

Use F5 to start the project.

Note: If you are having problems debugging on VSCode then type Ctrl + Shift + P and enter Debug: Download .NET Core Debugger to download the debugger.

Using Visual Studio Code

Navigate to http:https://localhost:5000/api/messages and you should see a message such as Echo bot is ready with <CLIENT_ID>

Using Visual Studio

Navigate to https://localhost:44300/api/messages. If required make sure to trust the certificates. Follow the following gif to do the same: Trusting SSL Cert on Windows

Deploying to Azure

Using Visual Studio

Everything is configured to work with Visual Studio out of the box. Hence just Right Click on the solution and click Publish and it should just deploy.

Note: For the first time you'll be asked to login in using your deployment credentials.

If it doesn't work then follow the manual deploy steps or file an issue.

Manual steps

Follow the steps to deploy to Azure manually.

Note: This assumes that you have permissions and have already set your deployment credentials on Azure. If not please complete those steps first.

For the first time, do the following:

git remote add azure https://username@work-bot.scm.azurewebsites.net:443/work-bot.git

Subsequently you can do:

git push azure master:master

This reads as Deploy to 'azure' from 'master' branch to (:) 'master' branch. Azure automatically detects the presence of WorkBot.Entry.csproj and resorts to download and building a .NET Core project.

Helpful commands

Git

To clear all local changes and create a fresh build use the following commands:

For a soft clean:

git clean -fdx
dotnet restore

For a complete clean:

git reset HEAD --hard
git clean -fdx
dotnet restore

VSCode

In VSCode the following commands can be useful (assumes Windows):

  • Ctrl + Shift + B ==> Builds the project.
  • F5 ==> Starts the web server.
  • Shift + Alt + F ==> Format the document.
  • Ctrl + P ==> Open a file in the project.
  • Ctrl + Shift + O ==> Search for a symbol ie. Class, Variable, Function, Property etc.
  • Ctrl + ~ ==> Open integrated terminal.
  • Ctrl + Shift + V ==> Preview Markdown files.

Useful links

Releases

No releases published

Packages

No packages published

Languages