django-admin.py startproject mysite
Creates a mysite directory in your current directory (Run to get a new project workspace).
python manage.py runserver
Runs Django development server. Use only for development -- not production.
python manage.py runserver 8080
python manage.py runserver 0.0.0.0:8080
Changes the port and host, respectively, that the server is listening on.
There are no comments on this page. [Add comment]