Django: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
Brian Wilson (talk | contribs)
mNo edit summary
Line 1: Line 1:
Working from the Packt Pubs Django book.
Starting working from a Packt Pubs copy of the Django book, then realized the book itself is an open source project here: http://djangobook.com/
 
I installed django as described in chaper 2 from the github repo.
== 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 ==
== Initial tests ==
Line 19: Line 6:
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.
SQLite is built in to Python so it's a pretty obvious track to follow.
I am also interested to see how to work with Django and Komodo 8.

Revision as of 15:28, 27 April 2013

Starting working from a Packt Pubs copy of the Django book, then realized the book itself is an open source project here: http://djangobook.com/ I installed django as described in chaper 2 from the github repo.

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.

I am also interested to see how to work with Django and Komodo 8.