-
Notifications
You must be signed in to change notification settings - Fork 10
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 #2055 from IntersectMBO/develop
GovTool 1.0.19-dev
- Loading branch information
Showing
37 changed files
with
5,649 additions
and
919 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
FROM node:18-alpine as builder | ||
|
||
ARG VITE_APP_ENV='beta' | ||
ARG VITE_BASE_URL | ||
ARG VITE_METADATA_API_URL | ||
ARG VITE_GTM_ID | ||
ARG VITE_NETWORK_FLAG=0 | ||
ARG VITE_SENTRY_DSN | ||
ARG NPMRC_TOKEN | ||
ARG VITE_USERSNAP_SPACE_API_KEY | ||
ARG VITE_IS_PROPOSAL_DISCUSSION_FORUM_ENABLED='true' | ||
ARG VITE_PDF_API_URL | ||
|
||
ENV NODE_OPTIONS=--max_old_space_size=8192 | ||
|
||
WORKDIR /src | ||
|
||
# Set npm configuration settings using environment variables | ||
RUN npm config set @intersect.mbo:registry "https://registry.npmjs.org/" --location=global | ||
RUN npm config set //registry.npmjs.org/:_authToken ${NPMRC_TOKEN} --location=global | ||
|
||
COPY package.json package-lock.json ./ | ||
RUN npm install | ||
COPY . . | ||
RUN npm run build | ||
|
||
FROM nginx:stable-alpine | ||
EXPOSE 80 | ||
COPY nginx.conf /etc/nginx/conf.d/default.conf | ||
COPY --from=builder /src/maintenance-page/index.html /usr/share/nginx/html/maintenance.html | ||
COPY --from=builder /src/dist /usr/share/nginx/html |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 @@ | ||
{ | ||
"name": "@govtool/frontend", | ||
"private": true, | ||
"version": "1.0.18", | ||
"version": "1.0.19", | ||
"type": "module", | ||
"scripts": { | ||
"build": "vite build", | ||
|
@@ -25,7 +25,7 @@ | |
"dependencies": { | ||
"@emotion/react": "^11.11.1", | ||
"@emotion/styled": "^11.11.0", | ||
"@emurgo/cardano-serialization-lib-asmjs": "12.0.0-beta.2", | ||
"@emurgo/cardano-serialization-lib-asmjs": "^12.1.0", | ||
"@hookform/resolvers": "^3.3.1", | ||
"@intersect.mbo/intersectmbo.org-icons-set": "^1.0.8", | ||
"@intersect.mbo/pdf-ui": "^0.3.9", | ||
|
@@ -109,5 +109,5 @@ | |
"typescript": "^5.0.2" | ||
}, | ||
"readme": "ERROR: No README data found!", | ||
"_id": "[email protected].18" | ||
"_id": "[email protected].19" | ||
} |
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.