apeman-task-crt
v1.0.3
Published
apeman task to generate certifications.
Downloads
7
Readme
apeman-task-crt
apeman task to generate certifications.
Installation
$ npm install apeman-task-crt --save-dev
Usage
- Define a task within Apemanfile.js
- 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 | | Names to generate. | | options | object | | Optional settings. | | options.out | string | | Output directory path. |
License
This software is released under the MIT License.