Skip to content

Commit

Permalink
styling updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rrmerugu committed May 30, 2021
1 parent 9dbeabd commit fa3a8a1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ RUN npm run-script build --production
FROM nginx:alpine as production
COPY --from=react-build /code/dockerfiles/nginx.conf /etc/nginx/conf.d/default.conf.template
COPY --from=react-build /code/build /usr/share/nginx/html
ENV PORT=${PORT:-8888}
ENV PORT=${PORT:-8300}
EXPOSE $PORT
CMD envsubst '$PORT' < /etc/nginx/conf.d/default.conf.template > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'
CMD envsubst '$PORT' < /etc/nginx/conf.d/default.conf.template > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Open source graph visualiser.
## Setup Invana Studio

```shell script.
docker run -p 8888:8888 -d --name invana-studio invanalabs/invana-studio
docker run -p 8300:8300 -d --name invana-studio invanalabs/invana-studio
```
This will start a invana-studio service at 8888 port. ex: http://localhost:8888
This will start a invana-studio service at 8300 port. ex: http://localhost:8300

> Invana Studio uses [Invana Engine](https://github.com/invanalabs/invana-engine) as the backend to
connect to graph databases. Invana Engine is a GraphQL API for Apache TinkerPop supported graph databases.
Expand Down
4 changes: 2 additions & 2 deletions src/web/viewlets/canvas/graph-canvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -764,8 +764,8 @@ export default class GraphCanvas extends DefaultRemoteComponent {
dialogClassName="modal-90w"
backdrop={true}
centered>
<Modal.Header className={"pt-1 pb-1 small"} closeButton>
<Modal.Title className={"h5"} id="contained-modal-title-vcenter">
<Modal.Header className={"pt-1 pb-1 small"}>
<Modal.Title className={"h5"}>
Response Viewer
</Modal.Title>
</Modal.Header>
Expand Down
2 changes: 1 addition & 1 deletion src/web/viewlets/canvas/loading.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
background: white;
left: 50px;
height: calc(100% - 24px);
opacity: 0.95;
opacity: 0.90;
z-index: 10000;

h4 {
Expand Down

0 comments on commit fa3a8a1

Please sign in to comment.