Subversion Repositories blog-sources

Compare Revisions

Ignore whitespace Rev 3 → Rev 5

/django-apache2-wsgi-2/idreammicro/idreammicro/settings.py
1,5 → 1,8
# Django settings for idreammicro project.
 
import os
PROJECT_ROOT = os.path.dirname(__file__) + '/..'
 
DEBUG = True
TEMPLATE_DEBUG = DEBUG
 
61,7 → 64,7
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/var/www/example.com/static/"
STATIC_ROOT = ''
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static')
 
# URL prefix for static files.
# Example: "http://example.com/static/", "http://static.example.com/"