-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Matthew Heroux <[email protected]>
- Loading branch information
Showing
12 changed files
with
100 additions
and
14 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
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
19 changes: 19 additions & 0 deletions
19
services/design-system/stories/pages/atoms/ColorPallette.stories.tsx
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,19 @@ | ||
import React from 'react'; | ||
import { Meta } from '@storybook/react'; | ||
import { FontAwesomeIcon, Stack, Divider, Paper } from '../../../src'; | ||
|
||
export default { | ||
title: 'Atoms/ColorPallette', | ||
component: FontAwesomeIcon, | ||
} as Meta<typeof FontAwesomeIcon>; | ||
|
||
// TODO create a display of permitted colors | ||
export const Default = () => ( | ||
<Stack | ||
direction="row" | ||
divider={<Divider orientation="vertical" flexItem />} | ||
spacing={2} | ||
> | ||
<div style={{ background: '#000' }}></div> | ||
</Stack> | ||
); |
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,7 +1,11 @@ | ||
# @cats-cradle/developer-portal | ||
|
||
WIP Unstable | ||
The Developer Portal service makes it easy to test multiple deployed service | ||
endpoints. The service is not designed to work against local service endpoints | ||
because that would involve starting n+1 services. It only works for deployed | ||
services. | ||
|
||
<https://redocly.com/customers/australia-post/> | ||
## References | ||
|
||
<https://redocly.com/docs/redoc/deployment/intro/#how-to-run-redoc-locally> | ||
- [Redoc](https://redocly.com/customers/australia-post/) | ||
- [Redoc Locally](https://redocly.com/docs/redoc/deployment/intro/#how-to-run-redoc-locally) |
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,9 @@ | ||
// TODO // Swagger -> get module from each service? | ||
|
||
// involve spinning up many services. | ||
|
||
// combine multiple swagger definitions, possibly by openapi-spec? | ||
|
||
// Schema can be obtained from each main.ts | ||
|
||
// should be a hard coded list of services supported |
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,4 @@ | ||
export const DeveloperServices = [ 'html-to-pdf', 'luck-by-dice', | ||
'weather-control', 'email-service', 'character-sheet', ]; | ||
|
||
// TODO for each service get endpoint from SSM. |
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