forked from bcgov/supreme-court-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #92 from bcgov/feature/vue3
JASPER-157: Vue 3 Migration
- Loading branch information
Showing
89 changed files
with
16,799 additions
and
24,839 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Ignore dependencies | ||
**/node_modules | ||
bin | ||
obj | ||
dist | ||
build | ||
|
||
# Ignore logs and temporary files | ||
*.log | ||
*.tmp | ||
*.pid | ||
*.bak | ||
|
||
# Ignore IDE/editor files | ||
.vscode | ||
.idea | ||
*.suo | ||
*.user | ||
*.sln.docstates | ||
|
||
# Ignore OS files | ||
.DS_Store | ||
Thumbs.db | ||
__MACOSX | ||
|
||
# Ignore Git files | ||
.git | ||
.gitignore |
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,8 @@ | ||
{ | ||
"singleQuote": true, | ||
"semi": true, | ||
"vueIndentScriptAndStyle": true, | ||
"trailingComma": "es5", | ||
"printWidth": 80, | ||
"tabWidth": 2 | ||
} |
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 was deleted.
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
ARG NODE_VERSION=18 | ||
ARG VITE_PORT=1339 | ||
ARG WEB_SRC=./web | ||
|
||
FROM registry.access.redhat.com/ubi9/nodejs-${NODE_VERSION} | ||
ARG WEB_SRC | ||
ARG VITE_PORT | ||
|
||
WORKDIR /opt/app-root/src | ||
|
||
COPY ${WEB_SRC}/package*.json ./ | ||
|
||
USER root | ||
|
||
RUN npm install | ||
|
||
COPY ${WEB_SRC} . | ||
|
||
ENV VITE_PORT=${VITE_PORT} | ||
|
||
EXPOSE ${VITE_PORT} | ||
|
||
# Run the development server | ||
CMD npm run dev |
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 was deleted.
Oops, something went wrong.
This file was deleted.
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,17 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<html lang="en"> | ||
<head lang="en"> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> | ||
<title>Supreme Court Viewer</title> | ||
<link rel="icon" href="./favicon.ico"> | ||
<title>JASPER</title> | ||
</head> | ||
<body> | ||
<noscript> | ||
<strong>We're sorry but SCV.App doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> | ||
</noscript> | ||
<div id="app"></div> | ||
<script type="module" src="./src/main.ts"></script> | ||
<!-- built files will be auto injected --> | ||
</body> | ||
</html> |
Oops, something went wrong.