]> git.parisson.com Git - mezzo.git/commitdiff
update install doc
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 21 Jul 2016 08:58:30 +0000 (10:58 +0200)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 21 Jul 2016 08:58:30 +0000 (10:58 +0200)
README.rst
app/organization/core/models.py

index 8c64a92595ba66c5a25b28d0d4a0f095df0b707e..9415419edf585da773333c00f51b3f91a0ce5f8f 100644 (file)
@@ -67,20 +67,21 @@ Gulp require nodejs installed on your computer to work.
 
 1. Install gulp globally:
 
-  If you have previously installed a version of gulp globally, please run `npm rm --global gulp`
-  to make sure your old version doesn't collide with gulp-cli::
+    sudo npm install --global gulp
 
-    npm install --global gulp
+2. Install bower globally:
 
-2. Install gulp dependancies::
+    sudo npm install -g bower
+
+3. Install gulp dependancies::
 
     npm install
 
-3. Install bower components::
+4. Install bower components::
 
     bower install
 
-4. Run gulp::
+5. Run gulp::
 
     gulp [task]
 
index c0d3ae043dc8cf17eacfabdd32000a68f4032f4f..24a295e8e87d16b4f7a2d175c7679b4e27ce8afd 100644 (file)
@@ -12,7 +12,7 @@ class Named(models.Model):
 
     name = models.CharField(_('name'), max_length=512)
     description = models.TextField(_('description'), blank=True)
-
+    
     class Meta:
         abstract = True