-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: onboard retail dashboard sample (#1006)
* chore: add retail dashboard sample * feat: add sample config * ci: update code owner
- Loading branch information
1 parent
6de22a2
commit c598942
Showing
150 changed files
with
5,768 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# TeamsFx files | ||
env/.env.*.user | ||
env/.env.local | ||
.DS_Store | ||
build | ||
appPackage/build | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env | ||
.deployment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,245 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Hosted workbench (Edge)", | ||
"type": "msedge", | ||
"request": "launch", | ||
"url": "https://enter-your-SharePoint-site/_layouts/workbench.aspx", | ||
"webRoot": "${workspaceRoot}/src", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"runtimeArgs": [ | ||
"--remote-debugging-port=9222", | ||
"-incognito" | ||
], | ||
"preLaunchTask": "gulp serve", | ||
"postDebugTask": "Terminate All Tasks", | ||
"presentation": { | ||
"group": "remote", | ||
"order": 1 | ||
} | ||
}, | ||
{ | ||
"name": "Hosted workbench (Chrome)", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "https://enter-your-SharePoint-site/_layouts/workbench.aspx", | ||
"webRoot": "${workspaceRoot}/src", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"runtimeArgs": [ | ||
"--remote-debugging-port=9222", | ||
"-incognito" | ||
], | ||
"preLaunchTask": "gulp serve", | ||
"postDebugTask": "Terminate All Tasks", | ||
"presentation": { | ||
"group": "remote", | ||
"order": 2 | ||
} | ||
}, | ||
{ | ||
"name": "Start Teams workbench (Edge)", | ||
"type": "msedge", | ||
"request": "launch", | ||
"url": "https://teams.microsoft.com/l/app/${{local:TEAMS_APP_ID}}?installAppPackage=true&webjoin=true&${account-hint}", | ||
"webRoot": "${workspaceRoot}/src", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"postDebugTask": "Terminate All Tasks", | ||
"presentation": { | ||
"hidden": true | ||
}, | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Start Teams workbench (Chrome)", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "https://teams.microsoft.com/l/app/${{local:TEAMS_APP_ID}}?installAppPackage=true&webjoin=true&${account-hint}", | ||
"webRoot": "${workspaceRoot}/src", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"postDebugTask": "Terminate All Tasks", | ||
"presentation": { | ||
"hidden": true | ||
}, | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Attach to Frontend in Outlook (Edge)", | ||
"type": "msedge", | ||
"request": "launch", | ||
"url": "https://outlook.office.com/host/${{local:M365_APP_ID}}?${account-hint}", | ||
"webRoot": "${workspaceRoot}/src", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"postDebugTask": "Terminate All Tasks", | ||
"presentation": { | ||
"group": "all", | ||
"hidden": true | ||
}, | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Attach to Frontend in Outlook (Chrome)", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "https://outlook.office.com/host/${{local:M365_APP_ID}}?${account-hint}", | ||
"webRoot": "${workspaceRoot}/src", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"postDebugTask": "Terminate All Tasks", | ||
"presentation": { | ||
"group": "all", | ||
"hidden": true | ||
}, | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Attach to Frontend in the Microsoft 365 app (Edge)", | ||
"type": "msedge", | ||
"request": "launch", | ||
"url": "https://www.office.com/m365apps/${{local:M365_APP_ID}}?auth=2&${account-hint}", | ||
"webRoot": "${workspaceRoot}/src", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"postDebugTask": "Terminate All Tasks", | ||
"presentation": { | ||
"group": "all", | ||
"hidden": true | ||
}, | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Attach to Frontend in the Microsoft 365 app (Chrome)", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "https://www.office.com/m365apps/${{local:M365_APP_ID}}?auth=2&${account-hint}", | ||
"webRoot": "${workspaceRoot}/src", | ||
"sourceMaps": true, | ||
"sourceMapPathOverrides": { | ||
"webpack:///.././src/*": "${webRoot}/src/*", | ||
"webpack:///../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../src/*": "${webRoot}/src/*", | ||
"webpack:///../../../../../src/*": "${webRoot}/src/*" | ||
}, | ||
"postDebugTask": "Terminate All Tasks", | ||
"presentation": { | ||
"group": "all", | ||
"hidden": true | ||
}, | ||
"internalConsoleOptions": "neverOpen" | ||
} | ||
], | ||
"compounds": [ | ||
{ | ||
"name": "Teams workbench (Edge)", | ||
"configurations": [ | ||
"Start Teams workbench (Edge)" | ||
], | ||
"preLaunchTask": "Start Teams App Locally", | ||
"presentation": { | ||
"group": "forteams", | ||
"order": 1 | ||
}, | ||
"stopAll": true | ||
}, | ||
{ | ||
"name": "Teams workbench (Chrome)", | ||
"configurations": [ | ||
"Start Teams workbench (Chrome)" | ||
], | ||
"preLaunchTask": "Start Teams App Locally", | ||
"presentation": { | ||
"group": "forteams", | ||
"order": 2 | ||
}, | ||
"stopAll": true | ||
}, | ||
{ | ||
"name": "Outlook workbench (Edge)", | ||
"configurations": [ | ||
"Attach to Frontend in Outlook (Edge)" | ||
], | ||
"preLaunchTask": "Start Teams App Locally", | ||
"presentation": { | ||
"group": "group2: Outlook", | ||
"order": 3 | ||
}, | ||
"stopAll": true | ||
}, | ||
{ | ||
"name": "Outlook workbench (Chrome)", | ||
"configurations": [ | ||
"Attach to Frontend in Outlook (Chrome)" | ||
], | ||
"preLaunchTask": "Start Teams App Locally", | ||
"presentation": { | ||
"group": "group2: Outlook", | ||
"order": 4 | ||
}, | ||
"stopAll": true | ||
}, | ||
{ | ||
"name": "The Microsoft 365 app workbench (Edge)", | ||
"configurations": [ | ||
"Attach to Frontend in the Microsoft 365 app (Edge)" | ||
], | ||
"preLaunchTask": "Start Teams App Locally", | ||
"presentation": { | ||
"group": "group3: the Microsoft 365 app", | ||
"order": 5 | ||
}, | ||
"stopAll": true | ||
}, | ||
{ | ||
"name": "The Microsoft 365 app workbench (Chrome)", | ||
"configurations": [ | ||
"Attach to Frontend in the Microsoft 365 app (Chrome)" | ||
], | ||
"preLaunchTask": "Start Teams App Locally", | ||
"presentation": { | ||
"group": "group3: the Microsoft 365 app", | ||
"order": 6 | ||
}, | ||
"stopAll": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"debug.onTaskErrors": "abort" | ||
} |
Oops, something went wrong.