Define __unicode__ on models instead of __str__.
[matthijs/projects/xerxes.git] / dbsettings.py.tmpl
1 # Database settings. Put here to keep them out of version control. We
2 # don't want sensitive data in there, and database settings might vary
3 # per deployment
4 DATABASE_ENGINE = 'mysql'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
5 DATABASE_NAME = 'ee_django'         # Or path to database file if using sqlite3.
6 DATABASE_USER = 'ee_django'         # Not used with sqlite3.
7 DATABASE_PASSWORD = ''              # Not used with sqlite3.
8 DATABASE_HOST = ''                  # Set to empty string for localhost. Not used with sqlite3.
9 DATABASE_PORT = ''                  # Set to empty string for default. Not used with sqlite3.
10
11 # Database to use for phpbb authentication. Other variables from above
12 # (except for ENGINE) can similarly be overridden.
13 PHPBB_DATABASE_NAME = 'ee_forum'