Update README.md export command (#708)

Quoting DATABASE_URL content variable prevents an issue from the command
export. In case of a string (i.e. password) with given characters (i.e.
'('), it can make the command fail. Quoting it prevents that from
happening.
The issue happened on MacOS with an M1 chip.
This commit is contained in:
taiebnoe 2023-06-07 18:53:24 +02:00 committed by GitHub
parent bd657bb72c
commit 9c07fc9150
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ Each tile source will have a [TileJSON](https://github.com/mapbox/tilejson-spec)
```shell
# publish all tables and functions from a single database
export DATABASE_URL=postgresql://user:password@host:port/database
export DATABASE_URL="postgresql://user:password@host:port/database"
martin
# same as above, but passing connection string via CLI, together with a directory of .mbtiles/.pmtiles files