fix space in env

pull/24/head
Etienne Trimaille 2015-12-21 16:37:07 +01:00
rodzic 99d6427baa
commit 764786bd5b
1 zmienionych plików z 17 dodań i 17 usunięć

Wyświetl plik

@ -34,23 +34,23 @@ imposm:
# seconds between 2 executions of the script # seconds between 2 executions of the script
- TIME=120 - TIME=120
# folder for settings (with *.json and *.sql) # folder for settings (with *.json and *.sql)
- SETTINGS = settings - SETTINGS=settings
# folder for caching # folder for caching
- CACHE = cache - CACHE=cache
# folder for diff which has been imported # folder for diff which has been imported
- IMPORT_DONE = import_done - IMPORT_DONE=import_done
# folder for diff which hasn't been imported yet # folder for diff which hasn't been imported yet
- IMPORT_QUEUE = import_queue - IMPORT_QUEUE=import_queue
# it can be 3857 # it can be 3857
- SRID = 4326 - SRID=4326
# see http://imposm.org/docs/imposm3/latest/tutorial.html#optimize # see http://imposm.org/docs/imposm3/latest/tutorial.html#optimize
- OPTIMIZE = false - OPTIMIZE=false
# see http://imposm.org/docs/imposm3/latest/tutorial.html#deploy-production-tables # see http://imposm.org/docs/imposm3/latest/tutorial.html#deploy-production-tables
- DBSCHEMA_PRODUCTION = public - DBSCHEMA_PRODUCTION=public
# http://imposm.org/docs/imposm3/latest/tutorial.html#deploy-production-tables # http://imposm.org/docs/imposm3/latest/tutorial.html#deploy-production-tables
- DBSCHEMA_IMPORT = import - DBSCHEMA_IMPORT=import
# http://imposm.org/docs/imposm3/latest/tutorial.html#deploy-production-tables # http://imposm.org/docs/imposm3/latest/tutorial.html#deploy-production-tables
- DBSCHEMA_BACKUP = backup - DBSCHEMA_BACKUP=backup
osmupdate: osmupdate:
@ -61,18 +61,18 @@ osmupdate:
# These are all currently the defaults but listed here for your # These are all currently the defaults but listed here for your
# convenience if you want to change them # convenience if you want to change them
# the maximum time range to assamble a cumulated changefile. # the maximum time range to assamble a cumulated changefile.
- MAX_DAYS = 100 - MAX_DAYS=100
# osmupdate uses a combination of minutely, hourly and daily changefiles. This value can be minute, hour, day or sporadic. # osmupdate uses a combination of minutely, hourly and daily changefiles. This value can be minute, hour, day or sporadic.
- DIFF = sporadic - DIFF=sporadic
# argument to determine the maximum number of parallely processed changefiles. # argument to determine the maximum number of parallely processed changefiles.
- MAX_MERGE = 7 - MAX_MERGE=7
# define level for gzip compression. values between 1 (low compression but fast) and 9 (high compression but slow) # define level for gzip compression. values between 1 (low compression but fast) and 9 (high compression but slow)
- COMPRESSION_LEVEL = 1 - COMPRESSION_LEVEL=1
# change the URL to use a custom URL to fetch regional file updates. # change the URL to use a custom URL to fetch regional file updates.
- BASE_URL = http://planet.openstreetmap.org/replication/ - BASE_URL=http://planet.openstreetmap.org/replication/
# folder for diff which hasn't been imported yet # folder for diff which hasn't been imported yet
- IMPORT_QUEUE = import_queue - IMPORT_QUEUE=import_queue
# folder for diff which has been imported # folder for diff which has been imported
- IMPORT_DONE = import_done - IMPORT_DONE=import_done
# seconds between 2 executions of the script # seconds between 2 executions of the script
- TIME = 120 - TIME=120