Added local changes after first push to the server.
authorhg@fossee.in
Wed, 04 Nov 2009 16:49:51 -0500
changeset 5 44bbc75fdd85
parent 4 f9757a637d04
child 6 f6851340fc73
Added local changes after first push to the server.
buildout.cfg
development.cfg
production.cfg
project/production.py
--- a/buildout.cfg	Fri Oct 30 16:09:59 2009 +0530
+++ b/buildout.cfg	Wed Nov 04 16:49:51 2009 -0500
@@ -61,7 +61,7 @@
 
 [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
--- a/development.cfg	Fri Oct 30 16:09:59 2009 +0530
+++ b/development.cfg	Wed Nov 04 16:49:51 2009 -0500
@@ -2,8 +2,8 @@
 extends =
     buildout.cfg
 
-eggs +=
-    pysqlite
+#eggs +=
+#    pysqlite
 
 [django]
 settings = development
--- a/production.cfg	Fri Oct 30 16:09:59 2009 +0530
+++ b/production.cfg	Wed Nov 04 16:49:51 2009 -0500
@@ -2,5 +2,6 @@
 extends =
     buildout.cfg
 
-eggs +=
-    psycopg2
+#eggs +=
+#    psycopg2
+#
\ No newline at end of file
--- a/project/production.py	Fri Oct 30 16:09:59 2009 +0530
+++ b/project/production.py	Wed Nov 04 16:49:51 2009 -0500
@@ -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 @@
     '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