Skip to content

Commit 64502fc

Browse files
committed
merged the new code with the web-ui project
1 parent 6adda6c commit 64502fc

File tree

109 files changed

+19168
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+19168
-4
lines changed

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
node_modules
2+
3+
# Environments
4+
.env
5+
.venv
6+
env/
7+
venv/
8+
ENV/
9+
env.bak/
10+
venv.bak/
11+
12+
.DS_Store
13+
.vscode
14+
.idea

.prettierrc.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
trailingComma: "es5"
2+
tabWidth: 4
3+
semi: false
4+
singleQuote: true

.storybook/main.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = {
2+
stories: ['../src/**/stories.@(js|jsx|ts|tsx)'],
3+
addons: [
4+
'@storybook/addon-links',
5+
'@storybook/addon-essentials',
6+
'@storybook/preset-create-react-app',
7+
],
8+
typescript: {
9+
check: false,
10+
checkOptions: {},
11+
reactDocgen: 'react-docgen-typescript',
12+
reactDocgenTypescriptOptions: {
13+
shouldExtractLiteralValuesFromEnum: true,
14+
propFilter: (prop) =>
15+
prop.parent ? !/node_modules/.test(prop.parent.fileName) : true,
16+
},
17+
},
18+
}

.storybook/preview.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
export const parameters = {
3+
actions: { argTypesRegex: "^on[A-Z].*" },
4+
}

Dockerfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM node:lts
2+
3+
WORKDIR /app
4+
5+
COPY package.json /app/package.json
6+
COPY yarn.lock /app/yarn.lock
7+
8+
RUN yarn --pure-lockfile
9+
10+
EXPOSE 3000
11+
12+
CMD [ "yarn start" ]

README.md

+37-4

_old/README.md

+6
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

dev/index.html _old/dev/index.html

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

www/index.html _old/www/index.html

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

fonts/D-DIN-Bold.otf

58.8 KB
Binary file not shown.

fonts/D-DIN-Italic.otf

63.9 KB
Binary file not shown.

fonts/D-DIN.otf

58.5 KB
Binary file not shown.

fonts/D-DINCondensed-Bold.otf

57.1 KB
Binary file not shown.

fonts/D-DINCondensed.otf

59.1 KB
Binary file not shown.

fonts/D-DINExp-Bold.otf

56 KB
Binary file not shown.

fonts/D-DINExp-Italic.otf

61.9 KB
Binary file not shown.

fonts/D-DINExp.otf

57.3 KB
Binary file not shown.

fonts/DIN-Alternate-Bold.ttf

148 KB
Binary file not shown.

images/icon.svg

+12

images/landing-bg.svg

+12

images/pci_avatar.jpg

58 KB

images/pci_banner.jpg

81.8 KB

images/search.svg

+9

old/README.md

+4

0 commit comments

Comments
 (0)