Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
matteofigus committed Sep 9, 2019
1 parent 9e9b54c commit 40dc7c7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,23 @@
.vscode

backend
backend.zip
dist
frontend.zip
manual-test.js
node_modules
npm-debug.log*
package-lock.json
venv

src/backend/transcriber/.classpath
src/backend/transcriber/.factorypath
src/backend/transcriber/.project
src/backend/transcriber/.settings
src/backend/transcriber/bin
src/backend/transcriber/target

src/frontend/build
src/frontend/dist
src/frontend/public/settings.js

taskcat_outputs
transcriber.zip
templates
venv
yarn.lock
3 changes: 2 additions & 1 deletion ci/include.lst
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
backend
cfn-publish.config
frontend.zip
package.json
templates
README.md
transcriber.zip
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"scripts": {
"backend": "npm run backend-package && npm run backend-deploy",
"backend-package": "cd src/backend/transcriber/ && zip -r ../../../backend/transcriber.zip Dockerfile pom.xml src/",
"backend-package": "cd src/backend/transcriber/ && zip -r ../../../transcriber.zip Dockerfile pom.xml src/",
"build": "npm run webui-build && npm run lambda-build && npm run cfn-build && npm run backend-package && npm run webui-package",
"cfn-build": "npm run cfn-dist && cfn-flip -c -n -l src/cfn/template.yaml templates/template.yaml && npm run cfn-lambdas-dist && npm run cfn-copy-lambdas",
"cfn-copy-lambdas": "npm run cfn-copy-lambdas-aws_sdk && npm run cfn-copy-lambdas-fp && npm run cfn-copy-lambdas-orchestrator && npm run cfn-copy-lambdas-setup",
Expand Down Expand Up @@ -33,7 +33,7 @@
"tag": "git tag `npm run echo-version --silent`",
"test": "npm run cfn-test && npm run webui-test && npm run orch-test",
"webui-build": "cd src/frontend && npm run build",
"webui-package": "cd src/frontend/build && zip -r ../../../backend/frontend.zip .",
"webui-package": "cd src/frontend/build && zip -r ../../../frontend.zip .",
"webui-test": "cd src/frontend && npm t",
"zip": "zip -r `npm run echo-version --silent`.zip -@ < ci/include.lst"
},
Expand Down
2 changes: 1 addition & 1 deletion src/cfn/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Globals:
Function:
Environment:
Variables:
VERSION: '0.7'
VERSION: '0.8'

Parameters:

Expand Down

0 comments on commit 40dc7c7

Please sign in to comment.