-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4d75be
commit 178d3af
Showing
705 changed files
with
40,209 additions
and
4,656 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM node:10 | ||
|
||
WORKDIR /app | ||
COPY . . | ||
|
||
#RUN npm i yarn | ||
#RUN yarn global add @angular/cli@latest | ||
|
||
RUN yarn && yarn add moment && yarn add vis-util && npm run build-benchmark --prod --build-optimizer | ||
#RUN ng build --prod --outputPath=dist/www/en --baseHref=/ --i18nLocale=en --verbose=true | ||
RUN npm run compress:brotli | ||
#RUN npm run compress:gzip | ||
|
||
WORKDIR /app/dist | ||
RUN npm install --production | ||
EXPOSE 3024 | ||
|
||
CMD [ "npm", "run", "serve:prod" ] | ||
|
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,18 @@ | ||
FROM node:10 | ||
|
||
WORKDIR /app | ||
COPY . . | ||
|
||
#RUN npm i yarn | ||
#RUN yarn global add @angular/cli@latest | ||
|
||
RUN yarn && yarn add moment && yarn add vis-util && npm run build-np --prod --build-optimizer | ||
#RUN ng build --prod --outputPath=dist/www/en --baseHref=/ --i18nLocale=en --verbose=true | ||
RUN npm run compress:brotli | ||
#RUN npm run compress:gzip | ||
|
||
WORKDIR /app/dist | ||
RUN npm install --production | ||
EXPOSE 3004 | ||
|
||
CMD [ "npm", "run", "serve:prod" ] |
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
17 changes: 17 additions & 0 deletions
17
...ws-widget/collection/src/lib/_common/certificate-dialog/certificate-dialog.component.html
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,17 @@ | ||
<mat-card class="no-shadow"> | ||
<button mat-icon-button class="close-button" [mat-dialog-close]="true"> | ||
<mat-icon class="close-icon" color="warn">close</mat-icon> | ||
</button> | ||
<mat-card-title> | ||
<span i18n>Download Certificate</span> | ||
</mat-card-title> | ||
<mat-card-content> | ||
<img [src]="url| pipeSafeSanitizer: 'url'" alt="Certificate" role="image" class="certificate-banner-image"> | ||
</mat-card-content> | ||
<mat-card-actions class="flex flex-row-reverse"> | ||
<a mat-button (click)='dwonloadCert()' class="ws-mat-accent-border-active mat-accent"> | ||
<mat-icon class="mat-icon material-icons-outlined download_icon margin-right-xs">cloud_download</mat-icon> | ||
Download | ||
</a> | ||
</mat-card-actions> | ||
</mat-card> |
Oops, something went wrong.