If you don’ have the following scripts installed already, please do so now:
- Download and install git
- Download and install nodejs https://nodejs.org
Note: Make sure you have Node version >= 4.0 and NPM >= 3
Once you have those, copy the following script to install some global dependencies:
npm install -g bower webpack webpack-dev-server typings typescriptOnce you've cloned the repo, cd into the folder and install dependencies
cd Liaison-Admin-Style-Guide npm install
This will setup a working copy of Liaison-Admin-Style-Guide on your local machine.
To run a local copy in development mode, execute:
npm start
Go to http://localhost:3000 in your browser.
To run the local copy in production mode and build the sources, execute:
npm run prebuild:prod && npm run build:prod && npm run server:prod