Skip to content

Commit fa9de26

Browse files
committed
Merge branch 'master' of github.com:pythonkc/pythonkc.com
2 parents e8fa5c5 + 5c538f4 commit fa9de26

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.gondor
2-
pythonkc.kpf
32
*.pyc
3+
pythonkc_site/pythonkc.sqlite

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Steven Cummings
22
Julia Elman
3+
Matthew Irish
34
Mark Ransom
45
Jeff Triplett
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
Django==1.3
22
gondor==1.0b1.post12
3-
psycopg2==2.4.1
3+
psycopg2==2.4.1
4+
South==0.7.3

pythonkc_site/settings.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
DATABASES = {
1717
'default': {
18-
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
19-
'NAME': '', # Or path to database file if using sqlite3.
18+
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
19+
'NAME': os.path.join(os.path.abspath(os.path.dirname(__file__)), 'pythonkc.sqlite'), # Or path to database file if using sqlite3.
2020
'USER': '', # Not used with sqlite3.
2121
'PASSWORD': '', # Not used with sqlite3.
2222
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
@@ -121,9 +121,10 @@
121121
'django.contrib.messages',
122122
'django.contrib.staticfiles',
123123
# Uncomment the next line to enable the admin:
124-
# 'django.contrib.admin',
124+
'django.contrib.admin',
125125
# Uncomment the next line to enable admin documentation:
126-
# 'django.contrib.admindocs',
126+
'django.contrib.admindocs',
127+
'south',
127128
)
128129

129130
# A sample logging configuration. The only tangible logging

0 commit comments

Comments
 (0)