Skip to content

Latest commit

 

History

History
30 lines (16 loc) · 802 Bytes

README.md

File metadata and controls

30 lines (16 loc) · 802 Bytes

mvc-spec.org Build Status

The source of https://www.mvc-spec.org

Build the site

You will need to have node and npm installed. First install all the required npm dependencies:

$ npm install

To build the site run:

$ npm run build

The site will be built to the ./build/ directory.

Development mode

If you are actively working on the site, you should use the development mode.

To start in development mode, start the script like this:

$ npm run dev

You can now point your browser to: http://localhost:3000/

If you change any files, the script will automatically rebuild the site and refresh the browser.

That's it! :)