Skip to content

Commit

Permalink
clean up unused build options to remove confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
stitch committed Dec 11, 2024
1 parent f20bece commit 3c10ec1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 17 deletions.
2 changes: 0 additions & 2 deletions .env.production

This file was deleted.

2 changes: 0 additions & 2 deletions .env.staging

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ADD package-lock.json package-lock.json
RUN make setup

ADD . /src/
RUN make build-gui-deploy
RUN make build

# Copy all compiled content into simple http server container
FROM nginx
Expand Down
16 changes: 4 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,12 @@ vue-cli: | $(vue-cli)
run: vue-cli
npm run dev

# run-csp: vue-cli
# npm run serve -- --mode production

build-gui-staging: vue-cli
npm run build -- --mode staging

build-gui-production: vue-cli
npm run build -- --mode production

build-gui-deploy: vue-cli
# This option takes the env.deploy file and applies it during build.
build: vue-cli
npm run build -- --mode deploy

build: vue-cli
npm run build
build-local: vue-cli
npm run build -- --mode development

pull_image:
# optimize build by caching previously build image
Expand Down

0 comments on commit 3c10ec1

Please sign in to comment.