summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildout.cfg2
-rw-r--r--development.cfg4
-rw-r--r--production.cfg5
-rw-r--r--project/production.py12
4 files changed, 14 insertions, 9 deletions
diff --git a/buildout.cfg b/buildout.cfg
index e65cbfc..4adff57 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -61,7 +61,7 @@ urls =
[django-command-extensions]
recipe = zerokspot.recipe.git
-repository = http://github.com/django-extensions/django-extensions.git
+repository = git://github.com/django-extensions/django-extensions.git
[south]
recipe = infrae.subversion
diff --git a/development.cfg b/development.cfg
index 87de778..f7807f9 100644
--- a/development.cfg
+++ b/development.cfg
@@ -2,8 +2,8 @@
extends =
buildout.cfg
-eggs +=
- pysqlite
+#eggs +=
+# pysqlite
[django]
settings = development
diff --git a/production.cfg b/production.cfg
index 67ae8be..ee5ddc9 100644
--- a/production.cfg
+++ b/production.cfg
@@ -2,5 +2,6 @@
extends =
buildout.cfg
-eggs +=
- psycopg2
+#eggs +=
+# psycopg2
+# \ No newline at end of file
diff --git a/project/production.py b/project/production.py
index 4f89b15..1104c24 100644
--- a/project/production.py
+++ b/project/production.py
@@ -1,7 +1,10 @@
#django
from project.settings import *
-SITE_ID = 2
+DEBUG=True
+TEMPLATE_DEBUG=DEBUG
+
+SITE_ID = 1
INSTALLED_APPS = (
'django.contrib.auth',
@@ -23,10 +26,11 @@ INSTALLED_APPS = (
'basic.media',
'django_extensions',
'south',
+ 'registration',
)
-DATABASE_ENGINE = 'postgresql_psycopg2'
-DATABASE_NAME = 'kpc09'
-DATABASE_USER = 'kpc09'
+DATABASE_ENGINE = 'mysql'
+DATABASE_NAME = 'conference2009'
+DATABASE_USER = 'root'
# Imports DATABASE_PASSWORD from project/local.py that is not part of mercurial repo
from project.local import DATABASE_PASSWORD