get rid of MyCustomBackend that had hard-wired user accounts
[myslice.git] / devel / server-loop.sh
index 1eacb71..4ff84bf 100755 (executable)
@@ -7,6 +7,7 @@ hostname | grep -q '^z' && port=8080 || port=80
 [[ -n "$@" ]] && port=$1
 
 while true; do 
-    make all-static all-templates
+    ./manage.py collectstatic --noinput
     ./manage.py runserver 0.0.0.0:$port
+       sleep 1
 done