* Upgrade to get rid of REPL schmutz * rename workflow to lessen ambiguity vs. markdown compilation of docs * ensure lockfile makes it to fleetdm.com prod * skip force git add of package-lock to avoid confusion for now. (reverts 4e7e23990c472e84f3f24391ef360a175f725609) * rename build script (because now it won't always be markdown source files) * update metadata to match prev commit * change key name in generated sailsrc for consistency * stub query library page * used named params so others can tell what's up with the forcing * expand comments * expand comments * intermediate commit- playing with inlining the guts from doctemplater * stub basic docpage shell and a little page to preview that on * Compile YAML and set up query library page * clean sailsrc * optimize build by running everything in parallel * Add note about the fact that we don't even need to clone anything since we've consolidated it all into one repo now. facepalm * un-parallelize one bit that fails in CI if it's parallelized (it'll go away soon anyway)
28 lines
299 B
JavaScript
Vendored
28 lines
299 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View basic documentation',
|
|
|
|
|
|
description: 'Display "Basic documentation" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/docs/basic-documentation'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|