#!/usr/bin/env node

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

"use strict";

const apeman = require('apeman'),
    apemanBudWiki = require('apeman-bud-wiki');

const $ctx = apeman.ctx(__dirname),
    db = $ctx.db || {},
    loc = $ctx.loc || {};

module.exports = [
    // Render db model list
    apemanBudWiki.models(db.models),
    // Render locales resource list
    apemanBudWiki.locales(loc),
    // Render dockerlize instruction
    apemanBudWiki.dockerlize(),
    // Render production deploy
    apemanBudWiki.production()
];


{{{read _render}}}
