Show
Ignore:
Timestamp:
06/26/08 13:21:08 (2 years ago)
Author:
JensDiemer
Message:

Use instead of django-admin a manage.py file.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/standalone_linux.sh

    r1166 r1652  
    11#!/bin/sh 
    2  
    3 #export DJANGO_SETTINGS_MODULE=PyLucid.settings 
    42 
    53# use the local django packages 
     
    86while : 
    97do 
     8    echo '' 
    109    echo 'Starting django development server...' 
     10    echo '' 
    1111 
    12     python ./django/bin/django-admin.py runserver --settings=PyLucid.settings $* 
    13  
    14     ping localhost -n 1>NUL 
    15  
    16     echo '' 
    17     echo 'restart des Servers mit ENTER...' 
    18     read 
     12    python manage.py runserver $* 
    1913done 
    20  
    21 echo 'ENTER zum Beenden.' 
    22 read