Skip to content

j0n4s/kata_select_group

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kata template

General installation instructions:

Install NODE and NPM

Fastest way is to use apt-get but adding the correct sources:

$ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
$ sudo apt-get install -y nodejs

It may be important to update npm:

$ npm install npm@3 -g

For Tests

For running tests, we will use GRUNT (JS task runner) so we need to install it globally:

$ sudo npm install -g grunt-cli
$ sudo npm install -g karma-cli

Dependencies

In order to install dependencies and other external required modules, cd into each server and client folders and run:

$ npm install

Client uses Bower to keep track of required packages, so we need Bower installed globally as well:

$ sudo npm install -g bower

Now cd into the client folder and install the bower packages defined in the bower.json file with:

$ bower install

Releases

No releases published

Packages

No packages published