-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #360 from BalassaMarton/fdc3-appdirectory-shell-in…
…tegration AppDirectory+Shell integration
- Loading branch information
Showing
16 changed files
with
183 additions
and
115 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# FCD3 App Directory example | ||
|
||
This example contains a JSON file that can be used as the data source for ComposeUI's FDC3 App Directory implementation. | ||
The App Directory contains the `js-chart` and `js-grid` examples. | ||
|
||
To run the example: | ||
|
||
1. Run the `serve-chart-and-grid.ps1` script to run the local server for the included web apps. | ||
1. Launch the Shell project using the configuration named `Chart and grid`, or use these command line arguments: | ||
``` | ||
--url http://localhost:4200 --FDC3:AppDirectory:Source $(ComposeUIRepositoryRoot)/examples/fdc3-appdirectory/apps.json | ||
``` | ||
(you'll have to manually substitute `$(ComposeUIRepositoryRoot)` with the actual root path of the repo). |
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,22 @@ | ||
{ | ||
"applications": [ | ||
{ | ||
"appId": "js-chart", | ||
"name": "js-chart", | ||
"title": "JS Chart", | ||
"type": "web", | ||
"details": { | ||
"url": "http://localhost:8080/" | ||
} | ||
}, | ||
{ | ||
"appId": "js-grid", | ||
"name": "js-grid", | ||
"title": "JS Grid", | ||
"type": "web", | ||
"details": { | ||
"url": "http://localhost:4200/" | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
cd.. | ||
Push-Location . | ||
Set-Location $PSScriptRoot\.. | ||
npm i | ||
npx lerna run build --stream --scope "{@morgan-stanley/composeui-example-chart,@morgan-stanley/composeui-example-grid}" | ||
npx lerna run start --stream --scope "{@morgan-stanley/composeui-example-chart,@morgan-stanley/composeui-example-grid}" | ||
Pop-Location |
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
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
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
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
Oops, something went wrong.