project/production.py
author primal primal007@gmail.com
Mon, 30 Jan 2012 15:19:23 +0530
branch2011
changeset 522 01b130ea8d8d
parent 415 4b10ebd2e758
parent 518 9aa2d5e2a1cc
permissions -rw-r--r--
Merged
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
518
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
     1
from project.settings import *
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
     2
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
     3
DEBUG=False
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
     4
TEMPLATE_DEBUG=DEBUG
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
     5
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
     6
SITE_ID = 3
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
     7
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
     8
INSTALLED_APPS = (
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
     9
    'django.contrib.auth',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    10
    'django.contrib.contenttypes',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    11
    'django.contrib.comments',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    12
    'django.contrib.sessions',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    13
    'django.contrib.admin',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    14
    'django.contrib.sites',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    15
    'django.contrib.flatpages',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    16
    'django.contrib.markup',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    17
    'django.contrib.sitemaps',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    18
    'project.scipycon',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    19
    'project.scipycon.base',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    20
    'project.scipycon.proceedings',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    21
    'project.scipycon.registration',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    22
    'project.scipycon.talk',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    23
    'project.scipycon.user',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    24
    'tagging',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    25
    'robots',
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    26
)
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    27
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    28
DATABASE_ENGINE = 'mysql'
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    29
DATABASE_NAME = 'scipycon'
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    30
DATABASE_USER = 'scipy'
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    31
# Imports DATABASE_PASSWORD from project/local.py that is not part of mercurial repo
9aa2d5e2a1cc added production.py back to the system
primal primal007@gmail.com
parents:
diff changeset
    32
from project.local import DATABASE_PASSWORD