author | Madhusudan.C.S <madhusudancs@gmail.com> |
Wed, 08 Sep 2010 15:38:12 +0530 | |
changeset 157 | 640ca1c2af76 |
parent 151 | f85b864f5f8b |
child 271 | 412b8db4a036 |
permissions | -rw-r--r-- |
1
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
1 |
from project.settings import * |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
2 |
|
78
795dd8aeba9f
All changes freeze along with Apache static file serving.
hg@fossee.in
parents:
23
diff
changeset
|
3 |
DEBUG=False |
5
44bbc75fdd85
Added local changes after first push to the server.
hg@fossee.in
parents:
1
diff
changeset
|
4 |
TEMPLATE_DEBUG=DEBUG |
44bbc75fdd85
Added local changes after first push to the server.
hg@fossee.in
parents:
1
diff
changeset
|
5 |
|
151
f85b864f5f8b
Added sitemaps framework and robots framework.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
147
diff
changeset
|
6 |
SITE_ID = 3 |
1
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
7 |
|
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
8 |
INSTALLED_APPS = ( |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
9 |
'django.contrib.auth', |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
10 |
'django.contrib.contenttypes', |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
11 |
'django.contrib.comments', |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
12 |
'django.contrib.sessions', |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
13 |
'django.contrib.admin', |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
14 |
'django.contrib.sites', |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
15 |
'django.contrib.flatpages', |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
16 |
'django.contrib.markup', |
151
f85b864f5f8b
Added sitemaps framework and robots framework.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
147
diff
changeset
|
17 |
'django.contrib.sitemaps', |
96
178b89a3ca4f
Removed unwanted files and made more changes to make SciPyCon a clean app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
84
diff
changeset
|
18 |
'project.scipycon', |
115
4387e68286e7
Added base as a Django app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
96
diff
changeset
|
19 |
'project.scipycon.base', |
4387e68286e7
Added base as a Django app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
96
diff
changeset
|
20 |
'project.scipycon.proceedings', |
4387e68286e7
Added base as a Django app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
96
diff
changeset
|
21 |
'project.scipycon.registration', |
96
178b89a3ca4f
Removed unwanted files and made more changes to make SciPyCon a clean app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
84
diff
changeset
|
22 |
'project.scipycon.talk', |
115
4387e68286e7
Added base as a Django app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
96
diff
changeset
|
23 |
'project.scipycon.user', |
1
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
24 |
'tagging', |
151
f85b864f5f8b
Added sitemaps framework and robots framework.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
147
diff
changeset
|
25 |
'robots', |
1
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
26 |
) |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
27 |
|
5
44bbc75fdd85
Added local changes after first push to the server.
hg@fossee.in
parents:
1
diff
changeset
|
28 |
DATABASE_ENGINE = 'mysql' |
96
178b89a3ca4f
Removed unwanted files and made more changes to make SciPyCon a clean app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
84
diff
changeset
|
29 |
DATABASE_NAME = 'scipycon' |
178b89a3ca4f
Removed unwanted files and made more changes to make SciPyCon a clean app.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
84
diff
changeset
|
30 |
DATABASE_USER = 'scipy' |
1
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
31 |
# Imports DATABASE_PASSWORD from project/local.py that is not part of mercurial repo |
fda1c66b25f9
Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff
changeset
|
32 |
from project.local import DATABASE_PASSWORD |