pjo336 / vue-s3-deploy

Automatic deploy script for Vue Js applications on S3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vue S3 Deploy

This package provides a quick utility to upload Vue applications that are deployed as static web pages on Aws S3

Qualifiers:

  • dist package expected
  • dist/index.html must exist

Installation

yarn add -D vue-s3-deploy

or

npm install --save-dev vue-s3-deploy

Usage

Accepts the bucket name as the sole argument. Place a deploy script in your package.json. Here is an example:

"scripts": {
  "deploy": "rm -rf dist && yarn build && yarn vueS3Deploy <my-bucket>",
  "start": "yarn dev",
  "build": "node build/build.js"
},

About

Automatic deploy script for Vue Js applications on S3

License:MIT License


Languages

Language:JavaScript 100.0%