Skip to content

Commit

Permalink
Merge pull request #65 from kloudlite/features/design
Browse files Browse the repository at this point in the history
Features/design
  • Loading branch information
tulsiojha authored Jan 8, 2024
2 parents 6706730 + fa18c38 commit 1c372f2
Show file tree
Hide file tree
Showing 345 changed files with 15,678 additions and 10,136 deletions.
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ARTIFACTHUB_KEY_ID='600c2c01-4e2b-4dff-b7b8-52d00d2887ec'
ARTIFACTHUB_KEY_SECRET='p91ZSElMqQP+C+Zvmqhz7HXFg0C6m+qzolOsRMwpMBY='
18 changes: 18 additions & 0 deletions Dockerfile.storybook
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM node:20.8.1-alpine as base
# RUN apk add g++ make py3-pip
RUN npm i -g pnpm
WORKDIR /app


# design system
COPY ./src/design-system/ ./src/design-system/
WORKDIR /app/src/design-system
RUN pnpm i -p
RUN pnpm build-storybook


FROM node:20.8.1-alpine
WORKDIR /app
COPY --from=base ./src/design-system/storybook-dist/storybook ./public

ENTRYPOINT npm run start
2 changes: 1 addition & 1 deletion Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tasks:
case $(whoami) in
"bikash")
URL_SUFFIX=""
URL_SUFFIX="-bikash"
;;
"vision")
Expand Down
3 changes: 2 additions & 1 deletion fake-data-generator/gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ const types: string[] = [
'ConsoleListAppsQuery',
'ConsoleListConfigsQuery',
'ConsoleListSecretsQuery',
'ConsoleListManagedServicesQuery',
'ConsoleListClusterMSvsQuery',
'ConsoleListManagedResourceQuery',
'ConsoleListHelmChartQuery',
];

async function fake(files: string[], types: string[] = []) {
Expand Down
Loading

0 comments on commit 1c372f2

Please sign in to comment.