Skip to content

lazjramos/kata_select_group

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kata Cuestionarix

General installation instructions:

Install build essentials:

$sudo apt-get install build-essential

Install NODE and NPM

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

$ curl -sL https://deb.nodesource.com/setup_4.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

About

Cuestionarix Kata

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 81.4%
  • HTML 12.9%
  • CSS 5.7%