]> git.parisson.com Git - mezzo.git/commitdiff
Remove the watchdog for static files (should me done by cron or by hand on server...
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 4 Aug 2016 08:11:16 +0000 (10:11 +0200)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 4 Aug 2016 08:11:16 +0000 (10:11 +0200)
Gemfile.lock [deleted file]
README.rst
app/scripts/app.sh

diff --git a/Gemfile.lock b/Gemfile.lock
deleted file mode 100644 (file)
index 2ea5de1..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-GEM
-  remote: https://rubygems.org/
-  specs:
-    chunky_png (1.3.6)
-    compass (1.0.3)
-      chunky_png (~> 1.2)
-      compass-core (~> 1.0.2)
-      compass-import-once (~> 1.0.5)
-      rb-fsevent (>= 0.9.3)
-      rb-inotify (>= 0.9)
-      sass (>= 3.3.13, < 3.5)
-    compass-core (1.0.3)
-      multi_json (~> 1.0)
-      sass (>= 3.3.0, < 3.5)
-    compass-import-once (1.0.5)
-      sass (>= 3.2, < 3.5)
-    ffi (1.9.14)
-    multi_json (1.12.1)
-    rb-fsevent (0.9.7)
-    rb-inotify (0.9.7)
-      ffi (>= 0.5.0)
-    sass (3.4.22)
-
-PLATFORMS
-  ruby
-
-DEPENDENCIES
-  compass (<= 1.0.3)
-  sass (<= 3.4.22)
-
-RUBY VERSION
-   ruby 2.1.2p95
-
-BUNDLED WITH
-   1.12.5
index 604b9ef984b525f307e94c1b11dad5026bd96cc1..d69d46f8fc127e8ff8644eaf9f556331211541c4 100644 (file)
@@ -79,7 +79,7 @@ Gulp require nodejs installed on your computer to work.
 
 4. Install ruby dependencies::
 
-    gem install bundler
+    sudo gem install bundler
     bundle install
 
 
index 1d626fce2906c42689e0a1dac874d69a26f7e66d..4e48b535b6e7f36eac0a3e27dab648b1b13be9ab 100644 (file)
@@ -29,7 +29,7 @@ sh $app/scripts/wait.sh
 # django setup
 python $manage wait-for-db
 python $manage migrate --noinput
-python $manage bower_install -- --allow-root
+python $manage bower_install -- --allow-root
 python $manage collectstatic --noinput
 python $manage create-admin-user
 
@@ -39,8 +39,8 @@ then
     python $manage runserver 0.0.0.0:8000
 else
     # static files auto update
-    watchmedo shell-command --patterns="$patterns" --recursive \
-        --command='python '$manage' collectstatic --noinput' $app &
+    watchmedo shell-command --patterns="$patterns" --recursive \
+        --command='python '$manage' collectstatic --noinput' $app &
 
     uwsgi --socket :$port --wsgi-file $wsgi --chdir $app --master \
     --processes $processes --threads $threads \