]> git.ozlabs.org Git - patchwork/blobdiff - apps/settings.py
Adjust postgres "grant all" script to new name of bundle table
[patchwork] / apps / settings.py
index d5fd7b1a7509c87a8def367589ba46cd055824d3..20c8db3f4ed0d13d203da6d75acae20c640c7f2d 100644 (file)
@@ -9,7 +9,7 @@ ADMINS = (
 
 MANAGERS = ADMINS
 
-DATABASE_ENGINE = 'postgresql'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
+DATABASE_ENGINE = 'postgresql_psycopg2'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
 DATABASE_NAME = 'patchwork'             # Or path to database file if using sqlite3.
 DATABASE_USER = ''             # Not used with sqlite3.
 DATABASE_PASSWORD = ''         # Not used with sqlite3.
@@ -98,6 +98,9 @@ DEFAULT_FROM_EMAIL = 'Patchwork <patchwork@patchwork.example.com>'
 
 ACCOUNT_ACTIVATION_DAYS = 7
 
+# Set to True to enable the Patchwork XML-RPC interface
+ENABLE_XMLRPC = False
+
 try:
     from local_settings import *
 except ImportError, ex: