diff -r dc9f449dea1b -r 63b29f1370c1 readme.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/readme.md Mon Jun 13 17:33:11 2016 +0200 @@ -0,0 +1,29 @@ +# How to start? + +1. Make sure PIP is installed then install Django and others dependencies with + +``` +pip install -r requirements.txt + +``` + +2. Move to src/iconolab/static/js to install js dependencies. +Make sure your have installed nodejs then run the command bellow + +``` +npm install + +``` +3. To recreate the bundle file that lives in dist/ + +``` +npm build + +``` + +4. To add a new js module, you can add it to the js/components folder and then run + +``` +npm start +``` +