Skip to content

Commit

Permalink
removed old env var format in config
Browse files Browse the repository at this point in the history
  • Loading branch information
ARolek committed Sep 27, 2018
1 parent 17ebc09 commit c34a1d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions tegola-natural-earth.toml
Expand Up @@ -18,7 +18,7 @@ aws_secret_access_key = "${S3CACHE_AWS_SECRET_ACCESS_KEY}"
name = "ne"
type = "postgis"
host = "${NE_DB_HOST}"
port = $NE_DB_PORT
port = "${NE_DB_PORT}"
database = "${NE_DB_NAME}"
user = "${NE_DB_USER}"
password = "${NE_DB_PASS}"
Expand Down Expand Up @@ -437,9 +437,6 @@ password = "${NE_DB_PASS}"
id_fieldname = "ogc_fid"
sql = "SELECT ST_AsBinary(wkb_geometry) AS geometry, ogc_fid, featurecla, min_zoom FROM ne_10m_ocean WHERE min_zoom <= !ZOOM! AND wkb_geometry && !BBOX!"




[[maps]]
name = "ne"
attribution = "Natural Earth v4" # map attribution
Expand Down
4 changes: 2 additions & 2 deletions tegola.toml
Expand Up @@ -23,7 +23,7 @@ aws_secret_access_key = "${S3CACHE_AWS_SECRET_ACCESS_KEY}"
name = "osm"
type = "postgis"
host = "${OSM_DB_HOST}"
port = $OSM_DB_PORT
port = "${OSM_DB_PORT}"
database = "${OSM_DB_NAME}"
user = "${OSM_DB_USER}"
password = "${OSM_DB_PASS}"
Expand Down Expand Up @@ -207,7 +207,7 @@ password = "${OSM_DB_PASS}"
name = "ne"
type = "postgis"
host = "${NE_DB_HOST}"
port = $NE_DB_PORT
port = "${NE_DB_PORT}"
database = "${NE_DB_NAME}"
user = "${NE_DB_USER}"
password = "${NE_DB_PASS}"
Expand Down

0 comments on commit c34a1d3

Please sign in to comment.