diff options
| author | Maksim A. Boyko <maksim.a.boyko@gmail.com> | 2012-06-11 13:57:45 -0400 |
|---|---|---|
| committer | Maksim A. Boyko <maksim.a.boyko@gmail.com> | 2012-06-11 13:57:45 -0400 |
| commit | a32b1ece44b1dec03005ddfeb82c0a9e7b9c963d (patch) | |
| tree | 5eeb4022bd291bfb5cd1cde42497354347653b41 | |
| parent | 5c9a73a1f0bca65b4e4739355b828ac5772c57c3 (diff) | |
Core: Update settings
| -rw-r--r-- | scanneerjammer/settings.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/scanneerjammer/settings.py b/scanneerjammer/settings.py index 1d7e5a5..a485e01 100644 --- a/scanneerjammer/settings.py +++ b/scanneerjammer/settings.py @@ -50,18 +50,18 @@ USE_TZ = True # Absolute filesystem path to the directory that will hold user-uploaded files. # Example: "/home/media/media.lawrence.com/media/" -MEDIA_ROOT = '' +MEDIA_ROOT = '/home/boyko/www/scannerjammer.com/media/' # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash. # Examples: "http://media.lawrence.com/media/", "http://example.com/media/" -MEDIA_URL = '' +MEDIA_URL = '/media/' # Absolute path to the directory static files should be collected to. # Don't put anything in this directory yourself; store your static files # in apps' "static/" subdirectories and in STATICFILES_DIRS. # Example: "/home/media/media.lawrence.com/static/" -STATIC_ROOT = '' +STATIC_ROOT = '/home/boyko/www/scannerjammer.com/static/' # URL prefix for static files. # Example: "http://media.lawrence.com/static/" @@ -120,10 +120,11 @@ INSTALLED_APPS = ( 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', + 'django_evalution', # Uncomment the next line to enable the admin: 'django.contrib.admin', # Uncomment the next line to enable admin documentation: - # 'django.contrib.admindocs', + 'django.contrib.admindocs', ) # A sample logging configuration. The only tangible logging |
