#!/usr/bin/env node

/**
 * Bud file for bin env.
 * Executing this file renders scripts to switch env.
 *
 * 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');

let params = {
    // Env variables to export
    vars : {
        "DATABASE_HOST": "localhost"
    }
};

module.exports = [
    // production.sh
    apemanBudBin.envLocal('production', params),
    // development.sh
    apemanBudBin.envLocal('development', params),
    // staging.sh
    apemanBudBin.envLocal('staging', params),
    // test.sh
    apemanBudBin.envLocal('test', params)
];

{{{read _render}}}
