Django

Code

Changeset 6076

Show
Ignore:
Timestamp:
09/09/07 17:00:30 (1 year ago)
Author:
adrian
Message:

Improved 'Examples of using different ports and addresses' section in docs/django-admin.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/django-admin.txt

    r6075 r6076  
    391391memory. 
    392392 
    393 Examples: 
    394 ~~~~~~~~~ 
     393Examples of using different ports and addresses 
     394~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     395 
     396Port 8000 on IP address 127.0.0.1:: 
     397 
     398        django-admin.py runserver 
     399 
     400Port 8000 on IP address 1.2.3.4:: 
     401 
     402        django-admin.py runserver 1.2.3.4:8000 
    395403 
    396404Port 7000 on IP address 127.0.0.1::