apeman-task-crt

1.0.3 • Public • Published

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
Name Type Default Description
name string function
options object Optional settings.
options.out string Output directory path.

License

This software is released under the MIT License.

Links

/apeman-task-crt/

    Package Sidebar

    Install

    npm i apeman-task-crt

    Weekly Downloads

    6

    Version

    1.0.3

    License

    MIT

    Last publish

    Collaborators

    • okunishinishi