1.0.3 • Published 8 years ago

apeman-task-crt v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

apeman-task-crt

Build Status Code Climate Code Coverage npm Version JS Standard

apeman task to generate certifications.

Installation

$ npm install apeman-task-crt --save-dev

Usage

  1. Define a task within Apemanfile.js
  2. Call the task via apeman task command.

Apemanfile.js

/** This is an example Apemanfile to use apeman-task-crt */

'use strict'

module.exports = {
  $pkg: { /* ... */ },
  $tasks: {
    // Define your own task.
    'nginx:certs': require('apeman-task-crt')([
      'my-app.example.com',
      'my-admin-app.example.com'
    ], {
      //Options
      force: false,
      out: 'doc/nginx/certs'
    })
  }
}

Then,

$ apeman task nginx:certs

Signature

define(name, options) -> function

apeman task to generate certifications.

Args
NameTypeDefaultDescription
namestringfunctionNames to generate.
optionsobjectOptional settings.
options.outstringOutput directory path.

License

This software is released under the MIT License.

Links

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago