diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/requirements.txt | 14 | ||||
-rw-r--r-- | config/settings/settings.py | 6 |
2 files changed, 15 insertions, 5 deletions
diff --git a/config/requirements.txt b/config/requirements.txt index 15caa91..cea18cf 100644 --- a/config/requirements.txt +++ b/config/requirements.txt @@ -16,4 +16,16 @@ pep8 smartypants - +Markdown==2.4 +Pillow==2.4.0 +django-taggit==0.12 +django-typogrify==1.3.1 +flickr-api==0.5 +gunicorn==18.0 +jsmin==2.0.9 +oauth==1.0.1 +pep8==1.5.6 +psycopg2==2.5.3 +smartypants==1.8.3 +wsgiref==0.1.2 + diff --git a/config/settings/settings.py b/config/settings/settings.py index 8ad5f83..4af223c 100644 --- a/config/settings/settings.py +++ b/config/settings/settings.py @@ -18,6 +18,7 @@ DATABASES = { 'ENGINE': 'django.contrib.gis.db.backends.postgis', 'USER': 'luxagraf', 'PASSWORD': 'translinguis#', + 'HOST': '127.0.0.1', } } @@ -134,10 +135,7 @@ TEMPLATE_CONTEXT_PROCESSORS = ( ROOT_URLCONF = 'config.base_urls' TEMPLATE_DIRS = ( - os.path.join(PROJ_ROOT, 'design/templates') - # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". - # Always use forward slashes, even on Windows. - # Don't forget to use absolute paths, not relative paths. + os.path.join(PROJ_ROOT, 'design/templates'), ) |