From: Guillaume Pellerin Date: Thu, 21 Jul 2016 08:58:30 +0000 (+0200) Subject: update install doc X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=8e3e1ef33ec24ef7cd88aa93f28e0730dbc414ae;p=mezzo.git update install doc --- diff --git a/README.rst b/README.rst index 8c64a925..9415419e 100644 --- a/README.rst +++ b/README.rst @@ -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] diff --git a/app/organization/core/models.py b/app/organization/core/models.py index c0d3ae04..24a295e8 100644 --- a/app/organization/core/models.py +++ b/app/organization/core/models.py @@ -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