Coder Social home page Coder Social logo

deploy-bits's Introduction

@cypress/deploy-bits

Reusable deployment utilities

NPM

ci status semantic-release js-standard-style

Install

Requires Node version 6 or above.

npm install --save @cypress/deploy-bits

Use

Debugging

To debug functions from this module, run the program with DEBUG=deploy-bits environment variable.

isCI

Returns true if the code is running on a common continuous integration server. Uses is-ci.

const {isCI} = require('@cypress/deploy-bits')
if (isCI) {
  // we are on CI
}

warnIfNotCI

Prints a console warning if the code is not running on CI. Often we prefer deploying from CI rather than running the deploy command locally.

const {warnIfNotCI} = require('@cypress/deploy-bits')
warnIfNotCI()

getDeployEnvironment

Returns target deployment environment staging or production

const {getDeployEnvironment} = require('@cypress/deploy-bits')
getDeployEnvironment()
  .then(env => ...)

If the user specified environment using CLI --environment <name> option, it will be used. Otherwise, user will be prompted to select one.

? Which environment are you deploying?
❯ Staging
  Production

You can pass list of arguments for this function to parse (by default it uses process.argv)

getDeployEnvironment(['--environment', 'staging']) // yields "staging"

and you can even pass minimist parsing options

const options = {
  alias: {
    environment: 'e'
  }
}
getDeployEnvironment(['-e', 'staging']) // yields "staging"

getBranch

Resolves with current branch.

const {getBranch} = require('@cypress/deploy-bits')
getBranch()
  .then(branch => ...)

checkBranchEnvFolder

Checks the branch to environment mapping. For some branches checks if the working directory is clean (no modified source files). Always returns input environment name. Curried.

const {checkBranchEnvFolder} = require('@cypress/deploy-bits')
// synchronous method
checkBranchEnvFolder('master')('production')
// returns "production"
// will throw an error if there are modified files

getS3Config

Returns S3 config loaded from environment variable or local file. If cannot find either, throws an error.

const {getS3Config} = require('@cypress/deploy-bits')
const config = getS3Config()

Typical config file in support/.aws-credentials.json contains

{
  "bucket-production": "<production S3 folder name>",
  "bucket-staging": "<staging S3 folder name>",
  "key": "AWS API key",
  "secret": "AWS API secret"
}

getS3Publisher

Returns an instance of gulp-awspublish

const {getS3Config, getS3Publisher} = require('@cypress/deploy-bits')
const config = getS3Config()
const publisher = getS3Publisher(config['bucket-production'], config.key, config.secret)

publishToS3

Uploads (diffs) a local folder to AWS S3 folder.

const {getS3Config, getS3Publisher, publishToS3} = require('@cypress/deploy-bits')
const config = getS3Config()
const publisher = getS3Publisher(config['bucket-production'], config.key, config.secret)
publishToS3('dist/public', publisher)
// returns a promise

Note: if a local folder contains build.json it will be uploaded with "no cache" headers.

uploadToS3

Normal local folder upload to S3 using above functions.

const {uploadToS3} = require('@cypress/deploy-bits')
uploadToS3('dist/public', 'production')
  .then(...)

Small print

Support: if you find any problems with this module, email / tweet / open issue on Github

MIT License

Copyright (c) 2017 Cypress.io

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

deploy-bits's People

Contributors

bahmutov avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.