Skip to content
This repository was archived by the owner on Jul 11, 2025. It is now read-only.

Commit 820ff6b

Browse files
committed
single quotes (literal strings) in sample config toml
1 parent 1a8d1f3 commit 820ff6b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

sample.config.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[prepped_data]
2-
PREPPED_DATA_DIR = "/data"
2+
PREPPED_DATA_DIR = '/data'
33

44
[server_config]
5-
TIFF_CACHE_DIR = "<some location to cache geotiffs>"
6-
REGIONAL_CACHE_DIR = "<some location to cache regional datasets>"
7-
DEBUG_MODE = "false"
8-
COG_THREADS = "2" # Optional, Number of threads to use when creating COGs (defaults to 1)
9-
TILE_SIZE = "256" # Optional, tile block size to use (defaults to 256)
5+
TIFF_CACHE_DIR = '<some location to cache geotiffs>'
6+
REGIONAL_CACHE_DIR = '<some location to cache regional datasets>'
7+
DEBUG_MODE = 'false'
8+
COG_THREADS = '2' # Optional, Number of threads to use when creating COGs (defaults to 1)
9+
TILE_SIZE = '256' # Optional, tile block size to use (defaults to 256)
1010

1111
[jwt_auth]
1212
# Enable JWT auth : bool true/false
1313
JWT_ENABLED = false
1414
# Which iss to validate for the JWTs?
15-
JWT_ISS = "https://issuer.com"
15+
JWT_ISS = 'https://issuer.com'
1616
# WKT JWKS endpoint where public key can be retrieved
17-
WKT_ENDPOINT = "https://issuer.com/.well-known/jwks.json"
17+
WKT_ENDPOINT = 'https://issuer.com/.well-known/jwks.json'

0 commit comments

Comments
 (0)