Skip to content

Latest commit

 

History

History
58 lines (36 loc) · 1.08 KB

CONTRIBUTING.md

File metadata and controls

58 lines (36 loc) · 1.08 KB

WG Forge Platform Frontend course materials

Contents

Reference

Presentations made with Spectacle.

Development setup

  1. Install dependencies

    npm install
  2. Start the webpack server. The server will run at localhost:3000.

    npm start -- %presentation_name%

    E.g., following command will launch presentation from 00_introduction folder

    npm start -- 00_introduction
  3. To start new presentation copy boilerplate folder

    cp -a boilerplate %new_presentation_title%

Build & Deployment

Building the dist version of the project is as easy as running

npm run build -- %presentation_name%

To build new presentation for hosting with GitHub Pages:

git add docs/%presentation_name%
git commit -m 'Add %presentation_name%'

Then push it to remote.

Cheers! ✌️