From 8e3e1ef33ec24ef7cd88aa93f28e0730dbc414ae Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 21 Jul 2016 10:58:30 +0200 Subject: [PATCH] update install doc --- README.rst | 13 +++++++------ app/organization/core/models.py | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) 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 -- 2.39.5