# gulp-gae

> Gulp Google App Engine Plugin

Latest version **0.0.4** (published 2015-08-03) · MIT license · 0 weekly downloads

## Install

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

## 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.4 |
| Published | 2015-08-03 |
| First published | 2015-07-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6 |
| Author | Maciej Zasada |
| Maintainers | maciejzasada |
| Keywords | gulp, gae, google, app, engine, appengine |

## Links

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

## Dependencies (2)

- [through2](https://npm.io/package/through2.md) ^2.0.0
- [gulp-util](https://npm.io/package/gulp-util.md) ^3.0.6

## Recent versions

- 0.0.4 (latest) — 2015-08-03
- 0.0.3 — 2015-07-18
- 0.0.2 — 2015-07-18
- 0.0.1 — 2015-07-18

## README

gulp-gae
========

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

# Usage
```javascript
var gulp = require('gulp'),
  gae = require('../');


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'
    }));
});


gulp.task('gae-deploy', function () {
  gulp.src('app/app.yaml')
    .pipe(gae('appcfg.py', ['update'], {
      version: 'dev',
      oauth2: undefined // for value-less parameters
    }));
});


gulp.task('default', ['gae-serve']);

```

For a working example see the `test` folder.

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