Skip to content

Commit

Permalink
Deploying Vue.js app with serverless-finch plugin (#2)
Browse files Browse the repository at this point in the history
* Adding serverless-finch configuration.

* Handling urllib3 security alert.

* Updating serverless dependencies and plugins.

* Upgrading dev dependencies.

* Upgrading dependencies.

* Created S3 bucket for hosting website.

* Shell scripts now working.

* Updating dependencies.

* Creating .env.production.local file.

* Minor changes.
  • Loading branch information
cebartling committed Apr 29, 2019
1 parent 381fb7e commit 8bd0e21
Show file tree
Hide file tree
Showing 10 changed files with 606 additions and 329 deletions.
1 change: 1 addition & 0 deletions experiments/InvestGuruPrototype1/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ node_modules/
.idea/

.alphavantage
.sls-info
13 changes: 13 additions & 0 deletions experiments/InvestGuruPrototype1/deploy-dev-stage.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -ex


yarn deploy-dev

yarn serverless-info

yarn create-prod-env

(cd invest-guru-prototype1-vue && yarn build)

yarn deploy-client
Original file line number Diff line number Diff line change
Expand Up @@ -10,35 +10,35 @@
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"aws-amplify": "1.1.24",
"aws-amplify": "1.1.26",
"aws-amplify-vue": "^0.2.9",
"aws-appsync": "1.7.2",
"bootstrap": "4.3.1",
"bootstrap-vue": "2.0.0-rc.16",
"bootstrap-vue": "2.0.0-rc.19",
"chart.js": "2.8.0",
"core-js": "3.0.1",
"graphql-tag": "2.10.1",
"lodash": "4.17.11",
"vue": "2.6.10",
"vue-apollo": "3.0.0-beta.28",
"vue-chartjs": "3.4.2",
"vue-router": "3.0.2",
"vue-router": "3.0.6",
"vuex": "3.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.5.5",
"@vue/cli-plugin-e2e-cypress": "3.5.1",
"@vue/cli-plugin-eslint": "3.5.1",
"@vue/cli-plugin-unit-jest": "3.5.3",
"@vue/cli-service": "3.5.3",
"@vue/cli-plugin-babel": "3.7.0",
"@vue/cli-plugin-e2e-cypress": "3.7.0",
"@vue/cli-plugin-eslint": "3.7.0",
"@vue/cli-plugin-unit-jest": "3.7.0",
"@vue/cli-service": "3.7.0",
"@vue/eslint-config-prettier": "4.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.7.1",
"eslint": "5.16.0",
"eslint-plugin-vue": "5.2.2",
"node-sass": "4.11.0",
"node-sass": "4.12.0",
"sass-loader": "7.1.0",
"vue-template-compiler": "2.6.10"
}
Expand Down
Loading

0 comments on commit 8bd0e21

Please sign in to comment.