Django: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
Brian Wilson (talk | contribs)
Line 17: Line 17:
== Initial tests ==
== Initial tests ==


My initial testing will be with sqlite, then I will move on to postgresql to get PostGIS going.
My initial testing will be with SQLite, then I will move on to postgresql to get PostGIS going.
SQLite is built in to Python so it's a pretty obvious track to follow.

Revision as of 02:22, 27 April 2013

Working from the Packt Pubs Django book.

Get source

Now a github project. Ignore subversion instructions. Download / build / install into /usr/local

sudo apt-get install python-psycopg2
cd ~/src
git clone https://github.com/django/django.git
cd django
sudo python setup.py install

test

django-admin.py

Initial tests

My initial testing will be with SQLite, then I will move on to postgresql to get PostGIS going. SQLite is built in to Python so it's a pretty obvious track to follow.