Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.58 KB

File metadata and controls

28 lines (20 loc) · 1.58 KB

Microsoft Graph Teams App

Which folders are important?

  • For convenience, our manifest is now located in the teamsApp folder. You can then zip up the entire folder when you want to manually update it.
  • src is where we will most likely be doing most of the editing. This is where we will be adding the new components

Prerequisites

How to get it running (option 1)

  • Enter the tabs directory by running cd tabs
  • Run nvm use --lts (If you are on WSL, skip if you are not)
  • Start the project by hitting the F5 key in Visual Studio Code. Alternatively use the Run and Debug Activity Panel in Visual Studio Code and click the Start Debugging green arrow button.

How to get it running (option 2)

  • Enter the tabs directory by running cd tabs
  • Run nvm use --lts (If you are on WSL, skip if you are not)
  • npm install to install project dependencies. npm is installed by default with Node.js.
  • npm start starts the TypeScript compiler in watch mode and the local server. It should open your browser automatically.