GithubHelp home page GithubHelp logo

gulp-couchapp's Introduction

gulp-couchapp

Gulp extension for installing CouchApps.

Install

npm install gulp-couchapp --save

Usage

var couchapp = require('gulp-couchapp');

gulp.task('push', function () {
  return gulp.src('app.js')
    .pipe(couchapp.push([dbname], [options]));
});

This installs app.js in the specified dbname, or you can use a URL like 'http://domain.com/dbname'.

Options

  • scheme: Defaults to http
  • host: Defaults to 127.0.0.1
  • port: Defaults to 5984
  • auth.username + auth.password: You can specify HTTP auth parameters either by using options or a URL like 'http://user:pass@host/dbname'.
  • attachments: If you want to push not only the design document, but the _attachments of the App, specify the path to directory.

Basic ddoc

You should write your ddoc in the app.js file.

var ddoc = {
  _id: '_design/myapp',
  rewrites: [
    { from: '_db',     to: '../..' },
    { from: '_db/*',   to: '../../*' },
    { from: '_ddoc',   to: '' },
    { from: '_ddoc/*', to: '*' },
    { from: '/',       to: 'index.html' },
    { from: '/*',      to: '*' }
  ],
  views: {},
  shows: {},
  lists: {},
  validate_doc_update: function(newDoc, oldDoc, userCtx) {
    if (newDoc._deleted === true && userCtx.roles.indexOf('_admin') === -1) {
      throw 'Only admin can delete documents on this database.';
    }
  }
};
module.exports = ddoc;

gulp-couchapp's People

Contributors

7ictor avatar nrstott avatar

Stargazers

Roman avatar

Watchers

James Cloos avatar

Forkers

nrstott

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.