* Switch OMT to use the new tools v4.0.0 * borders are dynamically generated from the PBF file instead of downloading a prepared CSV file * all tools are executed as current user instead of root, thus files are easier to modify/delete if needed * all data is stored in the local file system instead of docker volumes (Docker currently has a limitation of non-root operation for internal volumes). This also makes it easier to examine and test it. * New `init-dirs` make target creates all the needed dirs - `build, data, cache` * `make clean` deletes the whole `build` dir instead of individual files. * `clean-docker` for backward compatibility deletes `cache` dirs (it used to be a volume) * all `psql` calls are now done with `ON_ERROR_STOP=1` * got rid of `pgclimb-*` targets -- same results can be done with `psql` (`pgclimb-list-views` & `pgclimb-list-tables` renamed to `list-views` and `list-tables`)
14 lines
264 B
Bash
14 lines
264 B
Bash
POSTGRES_DB=openmaptiles
|
|
POSTGRES_USER=openmaptiles
|
|
POSTGRES_PASSWORD=openmaptiles
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
QUICKSTART_MIN_ZOOM=0
|
|
QUICKSTART_MAX_ZOOM=7
|
|
DIFF_MODE=false
|
|
TOOLS_VERSION=4.0.0
|
|
|
|
BBOX=-180.0,-85.0511,180.0,85.0511
|
|
MIN_ZOOM=0
|
|
MAX_ZOOM=14
|