1.0.3 • Published 10 years ago
apeman-task-crt v1.0.3
apeman-task-crt
apeman task to generate certifications.
Installation
$ npm install apeman-task-crt --save-devUsage
- 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:certsSignature
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.