You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

gae-deploy

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

gae-deploy

Deploy static website to GAE

0.1.1
unpublished
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

gae-deploy

Deploy static website to GAE

Install

npm install gae-deploy --save-dev
    

Usage

var gae = require('gae-deploy')({})

// Download AppEngine Java SDK into '../appengine-java-sdk' folder (by default)
// Only if not already existing

gulp.task('getSdk', (cb) => {
  gae.getSdk(cb)          
})

// Deploy "war" folder

gulp.task('deploy', (cb) => {
  gae.deploy('war', cb)          
})

Options

var gae = require('gae-deploy')({
    sdkDir: '../appengine-java-sdk',
    sdkVer: '1.9.32',
    tmpDir: 'tmp'
})

FAQs

Package last updated on 20 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts