Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions samples/bot-all-cards/nodejs/.env

This file was deleted.

61 changes: 6 additions & 55 deletions samples/bot-all-cards/nodejs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,60 +1,11 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*


# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

#############

# TeamsFx files
env/.env.*.user
env/.env.local
.localConfigs.playground
.localConfigs
appManifest/build
/build
.notification.localstore.json
.notification.playgroundstore.json
appPackage/build

# dependencies
node_modules/
Expand All @@ -64,5 +15,5 @@ node_modules/
.deployment
.DS_Store

# build
lib/
# Dev tool directories
/devTools/
2 changes: 2 additions & 0 deletions samples/bot-all-cards/nodejs/.localConfigs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CLIENT_ID=
CLIENT_SECRET=
4 changes: 0 additions & 4 deletions samples/bot-all-cards/nodejs/.localConfigs.testTool

This file was deleted.

21 changes: 0 additions & 21 deletions samples/bot-all-cards/nodejs/.notification.testtoolstore.json

This file was deleted.

8 changes: 4 additions & 4 deletions samples/bot-all-cards/nodejs/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"recommendations": [
"TeamsDevApp.ms-teams-vscode-extension"
]
}
"recommendations": [
"TeamsDevApp.ms-teams-vscode-extension"
]
}
68 changes: 57 additions & 11 deletions samples/bot-all-cards/nodejs/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
{
"version": "0.2.0",
"configurations": [

{
"name": "Launch Remote (Edge)",
"type": "msedge",
"request": "launch",
"url": "https://teams.microsoft.com/l/app/${{TEAMS_APP_ID}}?installAppPackage=true&webjoin=true&${account-hint}",
"presentation": {
"group": "3-remote",
"order": 1
},
"internalConsoleOptions": "neverOpen"
},
{
"name": "Launch Remote (Chrome)",
"type": "chrome",
"request": "launch",
"url": "https://teams.microsoft.com/l/app/${{TEAMS_APP_ID}}?installAppPackage=true&webjoin=true&${account-hint}",
"presentation": {
"group": "3-remote",
"order": 2
},
"internalConsoleOptions": "neverOpen"
},
{
"name": "Launch App (Edge)",
"type": "msedge",
Expand All @@ -14,7 +35,8 @@
"group": "all",
"hidden": true
},
"internalConsoleOptions": "neverOpen"
"internalConsoleOptions": "neverOpen",
"perScriptSourcemaps": "yes"
},
{
"name": "Launch App (Chrome)",
Expand All @@ -28,7 +50,8 @@
"group": "all",
"hidden": true
},
"internalConsoleOptions": "neverOpen"
"internalConsoleOptions": "neverOpen",
"perScriptSourcemaps": "yes"
},
{
"name": "Attach to Local Service",
Expand All @@ -41,41 +64,64 @@
"hidden": true
},
"internalConsoleOptions": "neverOpen"
},
{
"name": "Launch Remote (Desktop)",
"type": "node",
"request": "launch",
"preLaunchTask": "Start App in Desktop Client (Remote)",
"presentation": {
"group": "3-remote",
"order": 3
},
"internalConsoleOptions": "neverOpen",
}
],
"compounds": [
{
"name": "Debug (Edge)",
"name": "Debug in Teams (Edge)",
"configurations": [
"Launch App (Edge)",
"Attach to Local Service"
],
"preLaunchTask": "Start Teams App Locally",
"preLaunchTask": "Start App Locally",
"presentation": {
"group": "all",
"group": "2-local",
"order": 1
},
"stopAll": true
},
{
"name": "Debug (Chrome)",
"name": "Debug in Teams (Chrome)",
"configurations": [
"Launch App (Chrome)",
"Attach to Local Service"
],
"preLaunchTask": "Start Teams App Locally",
"preLaunchTask": "Start App Locally",
"presentation": {
"group": "all",
"group": "2-local",
"order": 2
},
"stopAll": true
},
{
"name": "Debug in Test Tool (Preview)",
"name": "Debug in Teams (Desktop)",
"configurations": [
"Attach to Local Service"
],
"preLaunchTask": "Start App in Desktop Client",
"presentation": {
"group": "2-local",
"order": 3
},
"stopAll": true
},
{
"name": "Debug in Microsoft 365 Agents Playground",
"configurations": [
"Attach to Local Service"
],
"preLaunchTask": "Start Teams App (Test Tool)",
"preLaunchTask": "Start App in Microsoft 365 Agents Playground",
"presentation": {
"group": "1-local",
"order": 1
Expand Down
Loading