Changeset 9372 for src


Ignore:
Timestamp:
Jul 12, 2011, 8:02:09 AM (13 years ago)
Author:
rick
Message:

The cachine production location is /var/osm-cache (partition is larger and makes more sense).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/django_gheat/settings.py

    r9369 r9372  
    33import os
    44PROJECT_HOME = os.path.abspath(os.path.dirname(__file__))
    5 OSM_CACHE_DIR = '/tmp/osm-cache'
     5
     6OSM_CACHE_DIR = '/var/osm-cache'
     7if not os.path.exists(OSM_CACHE_DIR):
     8  OSM_CACHE_DIR = '/tmp/osm-cache'
     9
    610OSM_CACHE = 'osm_cache'
    711
Note: See TracChangeset for help on using the changeset viewer.