diff -r 9a77edda77b7 -r fda1c66b25f9 project/development.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/development.py Fri Oct 30 15:09:12 2009 +0530 @@ -0,0 +1,41 @@ +#django +from project.settings import * + +DEBUG=True +TEMPLATE_DEBUG=DEBUG + +SITE_ID = 1 + +INSTALLED_APPS = ( + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.comments', + 'django.contrib.sessions', + 'django.contrib.admin', + 'django.contrib.sites', + 'django.contrib.flatpages', + 'django.contrib.markup', + 'project.kiwipycon', + 'project.kiwipycon.user', + 'project.kiwipycon.talk', + 'project.kiwipycon.registration', + 'project.kiwipycon.sponsor', + 'tagging', + 'basic.blog', + 'basic.inlines', + 'basic.media', + 'django_extensions', + 'south', + 'registration', +) + +DATABASE_ENGINE = 'mysql' +DATABASE_NAME = 'conference' +DATABASE_USER = '' +DATABASE_PASSWORD = '' + +EMAIL_HOST = 'localhost' +EMAIL_PORT = '1025' +# print to standard output: +# python -m smtpd -n -c DebuggingServer localhost:1025 +