Skip to content

Commit

Permalink
Merge pull request #7 from KnowWhereGraph/develop
Browse files Browse the repository at this point in the history
Double Slash & Security Fixes
  • Loading branch information
ckfisher authored Jun 11, 2024
2 parents 3ca9605 + d402574 commit ea3ba5e
Show file tree
Hide file tree
Showing 6 changed files with 276 additions and 125 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,21 @@ This can also be done by using the Dockerfile for a more reliable build environm
docker-compose -f docker-compose.stage.yaml up
```

### Local

Builds that point to local GraphDB can be achieved with


```
ng build --configuration=local
```

This can also be done by using the Dockerfile for a more reliable build environment with

```
docker-compose -f docker-compose.local.yaml up
```

## Developing

The standard Git Flow: create a feature branch off of the `develop` branch and make pull requests into it. For full releases, merge from the `develop` branch into `main`.
Expand Down
2 changes: 1 addition & 1 deletion node-browser/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.12-bullseye-slim
FROM amd64/node:lts-buster-slim

RUN mkdir /app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion node-browser/docker-compose.local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ services:
build: '.'
volumes:
- ./dist/:/app/dist/
entrypoint: ["ng", "build", "--configuration=local"]
entrypoint: ["ng","build","--configuration=local"]
Loading

0 comments on commit ea3ba5e

Please sign in to comment.