Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

Commit

Permalink
ux improvements & bug corrections (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
dinuta committed Jul 25, 2021
1 parent 2ace0bf commit 3141f55
Show file tree
Hide file tree
Showing 13 changed files with 371 additions and 330 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VUE_APP_ESTUARY_DISCOVERY=http://estuary-discovery:8080
VUE_APP_ESTUARY_DISCOVERY=http://192.168.0.11:8081
VUE_APP_HTTP_AUTH_TOKEN=None
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
FROM node:14.5.0

ENV APP_DIR /home/node/app
WORKDIR $APP_DIR

COPY ./ $APP_DIR
WORKDIR $APP_DIR

RUN rm -rf $APP_DIR/node_modules
RUN npm install
RUN npm run build

RUN chmod 744 $APP_DIR/*.sh
RUN chmod 744 $APP_DIR/start.sh

EXPOSE 8080

CMD ["/home/node/app/start.sh"]
ENTRYPOINT ["/home/node/app/start.sh"]
4 changes: 3 additions & 1 deletion docker-compose-entire_stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,10 @@ services:
estuary-viewer:
image: estuaryoss/viewer:latest
hostname: estuary-viewer
entrypoint: bash -c "echo VUE_APP_ESTUARY_DISCOVERY=http://estuary-discovery:8080 > /home/node/app/.env; echo VUE_APP_HTTP_AUTH_TOKEN=None >> /home/node/app/.env; /home/node/app/start.sh"
container_name: estuary-viewer
environment:
ESTUARY_DISCOVERY: http://estuary-discovery:8080
HTTP_AUTH_TOKEN: None
# ports:
# - "8091:8080"
expose:
Expand Down
19 changes: 12 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "estuary-viewer",
"version": "4.2.2",
"version": "4.2.3",
"private": false,
"description": "Viewer for estuary stack",
"author": "Catalin Dinuta <constantin.dinuta@gmail.com",
Expand All @@ -25,8 +25,9 @@
"register-service-worker": "^1.7.1",
"selenium-webdriver": "^3.6.0",
"v-tooltip": "^2.0.3",
"vue": "^2.6.11",
"vue": "^2.6.4",
"vue-router": "^3.4.3",
"vuex": "^3.6.2",
"webdriver-manager": "^13.0.0",
"vue-json-csv": "^1.2.11",
"regenerator-runtime": "^0.13.7"
Expand All @@ -41,7 +42,7 @@
"node-sass": "^4.14.1",
"sass-loader": "^9.0.3",
"sass": "^1.26.10",
"vue-template-compiler": "^2.6.11",
"vue-template-compiler": "^2.6.14",
"mutationobserver-shim": "^0.3.7"
},
"browserslist": [
Expand Down
Loading

0 comments on commit 3141f55

Please sign in to comment.