This is my starting point for a new Django site, mixed and stirred from several public sources and spiced with my own enhancements.
I normally work with FeinCMS and its medialibrary, but sometimes also with Photologue, this is reflected in my setups.
My webserver of choice is Nginx with gunicorn, since my virtual server is always low on memory. Setup for Apache with mod_wsgi and Nginx with fcgi is also provided.
- server OS: Debian/Ubuntu based Linux
- local OS: MacOS X (only some local settings are OSX specific)
- web server: Apache/mod_wsgi or Nginx/gunicorn or Nginx/fcgi
- Python version: 2.5+
- Django version: 1.3
- version control: Git
- deployment tool: Fabric
- local development database: SQLite3
- server database: MySQL or PostgreSQL
- database migration: South
- process control (optional): daemontools or supervisord
Django's startproject doesn't do enough. I'm a programmer, thus lazy, and try to reduce redundant work like repeating the same setup steps over and over. (DRY)
Just copying/cloning this generic project to a new site isn't ideal either, since general changes don't affect all dependent sites, but I got no idea how to do that.
- Probably security holes - use at your own risk.
- I could also support runit, but I didn't want to replace init
- South still doesn't work for me, must overcome problems with several releases and multiple projects accessing the same Django app outside of virtualenvs
- Learn more from http://djangopatterns.com and https://github.com/callowayproject/django-app-skeleton
- Include Sphinx template and setup.py
- Optionally use Redis for sessions and cache, see http://unfoldthat.com/2011/09/14/try-redis-instead.html
- copy generic_project
- replace all occurrences of lowercase "project_name" with your project name. this is also the webserver and database server username!
- check the settings in fabfile.py, gunicorn-settings.py, settings.py, settings_local.py, supervisor.ini or service-run.sh
- set up an email account for your project’s error messages and configure it in settings.py
- if you use Nginx, change the internal port in nginx.conf (
fastcgi_pass 127.0.0.1:8001;
); I use "8 + last 3 numbers of UID" (UIDs start at 1000 on Debian):id -u project_name
git init
, always commit all changesmanage syncdb
(initialize south)fab webserver setup
(once)fab webserver deploy
(publish new release - always last committed version!)
I suggest to use makeuser.sh to create system and database accounts. Otherwise:
create user and sudo-enable it (I suggest via a group like
wheel
, but you can also add the user to sudoers):adduser project_name adduser project_name wheel
create database user and database (schema)
mysql -u root -p # at first setup only: we installed MySQL without user interaction, so there's no root password. Set it! use mysql; update user set password=password('...') where user='root'; # create user and database for our project: create user 'project_name'@'localhost' identified by '...'; create database project_name character set 'utf8'; grant all privileges on project_name.* to 'project_name'@'localhost'; flush privileges; quit;
If you use FeinCMS’ Page, consider first, which extensions you’ll need –
see the docs and the FAQ –
afterwards you would need to change the database table page_page
by hand,
since the changes aren’t detected by South!
- Setup with Apache/mod_wsgi: http://morethanseven.net/2009/07/27/fabric-django-git-apache-mod_wsgi-virtualenv-and-p/
- Setup with Nginx: http://djangoadvent.com/1.2/deploying-django-site-using-fastcgi/
- Nginx configuration: http://wiki.nginx.org/NginxConfiguration
- Gunicorn configuration: http://gunicorn.org/configure.html
- logrotate: e.g. http://www.linux-praxis.de/lpic1/manpages/logrotate.html
- daemontools: http://cr.yp.to/daemontools.html
- supervisord: http://supervisord.org
- Fabric: http://docs.fabfile.org
- South: http://south.aeracode.org/ (Getting started: http://mitchfournier.com/?p=25)
- MPTT: http://github.com/django-mptt/django-mptt
- FeinCMS: http://github.com/feincms/feincms