#!/bin/csh -f # django # ----------------------------------------------------------------------------- # Shell script to launch and manage Django server. # ----------------------------------------------------------------------------- # Support use of optional local "manage" script that activates a virtualenv if (-e ./manage) then ./manage runserver $*:q else python manage.py runserver endif # To allow connections from other computer at the same default port 8000 #python manage.py runserver 0.0.0.0:8000