Changeset 9567


Ignore:
Timestamp:
Aug 25, 2011, 2:02:41 PM (13 years ago)
Author:
rick
Message:

Make development on local en remote host whole bunch more easy.

Location:
src/django_gheat
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • src/django_gheat

    • Property svn:ignore
      •  

        old new  
        33sitemedia
        44id_rsa
         5local_settings.py
         6enable_debug
  • src/django_gheat/settings.py

    r9549 r9567  
    1010DJANGO_CDN_DOMAINS = [d + '.maps.wirelessleiden.nl' for d in DJANGO_BALANCERS]
    1111
    12 DEBUG = os.path.exists(PROJECT_HOME + '/enable-debug')
     12DEBUG = os.path.exists(PROJECT_HOME + '/enable_debug')
    1313TEMPLATE_DEBUG = DEBUG
    1414
     
    103103# Make sure to use a trailing slash.
    104104# Examples: "http://foo.com/static/admin/", "/static/admin/".
    105 ADMIN_MEDIA_PREFIX = '/d/static/admin/'
     105ADMIN_MEDIA_PREFIX = DJANGO_PREFIX + '/static/admin/'
    106106
    107107# Additional locations of static files
     
    160160    'wlheatmap',
    161161)
     162
     163# Include and custom local stuff
     164if os.path.isfile(PROJECT_HOME + '/local_settings.py'):
     165  from local_settings import *
Note: See TracChangeset for help on using the changeset viewer.