A simple blogging tool written using Django
- Install postgresql
- Install psycopg (Python Postgres Adapter)
- In postgresql.conf:
client_encoding = 'UTF8'
default_transaction_isolation = 'read committed'
timezone = 'UTC'
- In
django_blog/settings.py
- set TIME_ZONE to your timezone
- change user and password to your postgresql user and pass
- add settings.py to your .gitignore file, or else there might be DB conflicts with different usernames/passwords
python manage.py syncdbpython manage.py sql blog