From Fedora Project Wiki
Description
Smoketest the Django package
Setup
yum install Django
How to test
- django-admin startproject mysite
- cd mysite
- python manage.py runserver
- curl http://localhost:8000/
Expected Results
Should get a sample web page coming from the Django project that you just created.
Taken from: http://docs.djangoproject.com/en/dev/intro/tutorial01/