summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/requirements.txt10
-rw-r--r--config/settings/settings.py9
2 files changed, 14 insertions, 5 deletions
diff --git a/config/requirements.txt b/config/requirements.txt
index 043e5e5..c900a67 100644
--- a/config/requirements.txt
+++ b/config/requirements.txt
@@ -1,14 +1,22 @@
-Django==1.5.1
+Django==1.5.2
Markdown==2.2.0
PIL==1.1.7
+argparse==1.2.1
distribute==0.6.31
django-extensions==0.9
+flickr-api==0.4
+gunicorn==18.0
httplib2==0.7.7
jsmin==2.0.2
+oauth==1.0.1
psycopg2==2.4.5
+pylibmc==1.2.3
python-dateutil==2.1
requests==0.14.0
six==1.2.0
wsgiref==0.1.2
yolk==0.4.3
yuicompressor==2.4.7
+
+
+
diff --git a/config/settings/settings.py b/config/settings/settings.py
index f1a3d95..7738337 100644
--- a/config/settings/settings.py
+++ b/config/settings/settings.py
@@ -48,7 +48,7 @@ FLICKR_API_SECRET = '42ad60f04745cd9b'
#Pinboard User Info
PIN_USER = "luxagraf"
-PIN_PASS = "translinguis"
+PIN_PASS = "hyperrealtryptamine@34zaq"
#root url
BASE_URL = "http://luxagraf.net/"
#path to the folder that holds the generated html files
@@ -150,6 +150,7 @@ INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.sitemaps',
'django.contrib.gis',
+ 'django_extensions',
'locations',
'blog',
'photos',
@@ -159,7 +160,7 @@ INSTALLED_APPS = (
'templatetags',
'projects',
'guide',
- 'pages'
+ 'pages',
+ 'books',
+ 'stuff',
)
-
-