- 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
- NodeJS
- Chrome browser
- .NET
- An M365 account. If you do not have M365 account, apply one from M365 developer program
- Teams Toolkit Visual Studio Code Extension or TeamsFx CLI
- Run
npm install -g @microsoft/teamsfx-cli
to get the terminal bash commands
- Enter the
tabs
directory by runningcd 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 theRun and Debug Activity Panel
in Visual Studio Code and click theStart Debugging
green arrow button.
- Enter the
tabs
directory by runningcd 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.