setting up a new project in django
Here in this post, I am going to write how to start writing a web application using django. And before you start, I believe you have already downloaded and installed django. If not then please do refer http://usepython.blogspot.com/2012/12/getting-started-with-django.html . So we are ready to go? Now open terminal and lets create a new django project: $ django-admin.py startproject testProject This should create a django web project. That is you will see a directory created in the current working directory of the terminal. The directory will have a structure as follows: testProject: - manage.py - testProject - __init__.py - settings.py - urls.py - wsgi.py Since we have created a new project, change directory using the command: $cd testProject and run the project using the command: $ python manage.py runserver In the command line, you should see something like: Val