Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

habaneroconsulting/habanero-prototype-boilerplate

Repository files navigation

Habanero Prototype Boilerplate devDependency Status Build status

A simple boilerplate to start off prototyping.

Build Instructions

  1. Install NodeJS.

  2. Run npm install at the root project folder.

    This will read the package.json file and pull in all required node modules and put into a directory called node_modules.

  3. Use npm to build:

    • npm run build will create a debug/test version of the site
    • npm run production will create a production version of the site (i.e. JavaScript and CSS concatenated and minified)
    • npm start will create the debug/test version of the site, then create a simple testing server
    • npm run deploy will deploy the production version to the gh-pages branch.