##// END OF EJS Templates
Harden whitespace in log messages to show newlines, tabs, and spaces....
Harden whitespace in log messages to show newlines, tabs, and spaces. Due to the additional and inconsistent height of log messages, the other columns are vertically aligned to the top rather than the middle.

File last commit:

r28:e98235eb
r45:5967ee78
Show More
readme.rst
45 lines | 1.1 KiB | text/x-rst | RstLexer
refactor: fix inconsistent naming
r28 Javascript frontend for AppEnlight
project: initial commit
r0 ===================================
To fetch all the requirememts you need to have nodejs and npm installed on your dev machine, then from this dir execute::
npm install
npm install -g bower
npm install -g grunt-cli
bower install
This will fetch all the required components to build front with grunt.
To build production version (builds both js and css) just run::
grunt
To work on dev code version (builds js with comments and css) run:
grunt watch
You generally shouldn't need to run those separately but still:
To work on just Javascript version with comments run:
grunt watch:dev
To work on just CSS files run:
grunt watch:css
Ubuntu/Debian and broken node - running from node_modules instead system ones
-----------------------------------------------------------------------------
Download this:
http://nodejs.org/dist/v0.10.32/node-v0.10.32-linux-x64.tar.gz
unpack to your home into "node" directory then edit your .bashrc file to include:
export PATH=$PATH:~/node/bin
now you will be able to execute all the comands above just fine