From Fedora Project Wiki

Revision as of 23:12, 10 September 2010 by Toshio (talk | contribs)

Description

Smoketest the Django package

Setup

yum install Django

How to test

  1. django-admin startproject mysite
  2. cd mysite
  3. python manage.py runserver
  4. 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/