Q:

django runserver

# to start a django server cd to dir with manage.py file and type following
python manage.py runserver
5
python manage.py startapp # name of the app
7
python manage.py startapp app_name
5
 It is your tool for executing many Django-specific tasks such as
 starting a new app within a project, running the development server, 
 running your tests etc.
 Example: python manage.py runserver
2
python manage.py runserver
2
django-admin startproject mysite
5
$ python manage.py shell
...
>>> execfile('myscript.py')
1
$ django-admin <command> [options]
$ manage.py <command> [options]
$ python -m django <command> [options]
1
django-admin startproject {project-name}
0

New to Communities?

Join the community