#!/usr/bin/env node

/**
 * Bud file for bin nginx.
 * Executing this file renders scripts to handle nginx container.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{ pkg.name }}.
 *
 * @see https://github.com/coz-repo/coz
 */

'use strict'

const apemanBudBin = require('apeman-bud-bin')

const DPLY_NAME = 'nginx'

module.exports = [
  // deploy.js
  apemanBudBin.deploy(DPLY_NAME),
  // undeploy.js
  apemanBudBin.undeploy(DPLY_NAME),
  // terminal.js
  apemanBudBin.terminal(DPLY_NAME),
  // log.js
  apemanBudBin.log(DPLY_NAME)
]

{{{read _render}}}
