https://www.djangoproject.com/
http://www.djangobook.com/
Database support (PostgreSQL)
http://pkgs.repoforge.org/python-psycopg2/
http://www.cyberciti.biz/faq/psql-fatal ... -for-user/
http://www.postgresql.org/docs/7.4/stat ... ation.html
psql -U postgres -c "CREATE DATABASE mysite" -d template1
psql -U postgres -c "CREATE USER mysite WITH PASSWORD 'mysite'" -d mysite
python manage.py syncdb
Notice
python manage.py runserver 0.0.0.0:8000
python manage.py startapp polls
[ add comment ] ( 6 views ) | [ 0 trackbacks ] | permalink