Skip to content

Commit 0101f32

Browse files
authored
make redoc version configurable (#137)
1 parent 3c72fae commit 0101f32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sfa_api/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class Config(object):
1111
API_VERSION = __version__
12-
REDOC_VERSION = 'next'
12+
REDOC_VERSION = os.getenv('REDOC_VERSION', 'next')
1313
AUTH0_BASE_URL = 'https://solarforecastarbiter.auth0.com'
1414
AUTH0_AUDIENCE = 'https://api.solarforecastarbiter.org'
1515
JWT_KEY = requests.get(

0 commit comments

Comments
 (0)