# gulp-gae-improved

> Gulp Google App Engine Plugin

Latest version **0.0.5** (published 2017-02-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-gae-improved
pnpm add gulp-gae-improved
yarn add gulp-gae-improved
bun add gulp-gae-improved
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2017-02-19 |
| First published | 2016-09-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Maciej Zasada |
| Maintainers | drodrigo |
| Keywords | gulp, gae, google, app, engine, appengine |

## Links

- npm: https://www.npmjs.com/package/gulp-gae-improved
- Repository: https://github.com/drodrigo/gulp-gae-improved
- Homepage: https://github.com/drodrigo/gulp-gae-improved#readme
- Issues: https://github.com/drodrigo/gulp-gae-improved/issues
- npm.io page: https://npm.io/package/gulp-gae-improved

## Dependencies (4)

- [through2](https://npm.io/package/through2.md) ^2.0.0
- [gulp-util](https://npm.io/package/gulp-util.md) ^3.0.6
- [object-assign](https://npm.io/package/object-assign.md) ^4.1.0
- [google-app-engine](https://npm.io/package/google-app-engine.md) ^1.9.37

## Recent versions

- 0.0.5 (latest) — 2017-02-19
- 0.0.4 — 2016-11-17
- 0.0.3 — 2016-09-25

## README

gulp-gae-improved
========

Note: This is a fork from maciejzasada's repository gulp-gae:  https://github.com/maciejzasada/gulp-gae

We created this new repository due to the need of some additional changes...

========

# Installation
`npm install gulp-gae-improved --save-dev`

# Usage
```javascript
gae('script', options, [exitCallback]);
```

```javascript
var gulp = require('gulp'),
  gae = require('gulp-gae-improved');

gulp.task('gae-serve', function () {
  gulp.src('app/app.yaml')
    .pipe(gae('dev_appserver.py', {
      port: 8081,
      host: '0.0.0.0',
      admin_port: 8001,
      admin_host: '0.0.0.0'
    }));
});

// In the next example the gulp tasks are blocked until script is done
gulp.task('gae-deploy', function () {
  return gulp.src('app/app.yaml')
    .pipe(gae('appcfg.py', {
      commands: ['update'],
      version: 'dev',
      async: false,
      oauth2: undefined, // for value-less parameters
      oauth2_refresh_token: 'jfd90834jf90j4&Y#*&#4lojhfi83'
    }));
});


gulp.task('default', ['gae-serve']);
```
For a working example see the `test` folder.

# Options

1. **commands**: Array of commands to execute (like: ['help', 'update']), defaults to [];
2. **gae_dir**: Path to appengine library, defaults to built-in
4. **async**: Allow processes to run in 'background' in parallel to the current tasks, defaults to true;
5. All default parameters from both `appcfg.py` and `dev_appserver`

---
_Source: https://npm.io/package/gulp-gae-improved · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
