Expose BLENDER_ID_ENDPOINT in example config

This commit is contained in:
2018-06-22 19:40:10 +02:00
parent fad1aa75e9
commit b2d10b5ca7

View File

@@ -2,6 +2,8 @@ import os
DEBUG = True DEBUG = True
BLENDER_ID_ENDPOINT = 'http://id.local:8000'
SERVER_NAME = 'cloud.local:5001' SERVER_NAME = 'cloud.local:5001'
SCHEME = 'http' SCHEME = 'http'
PILLAR_SERVER_ENDPOINT = f'{SCHEME}://{SERVER_NAME}/api/' PILLAR_SERVER_ENDPOINT = f'{SCHEME}://{SERVER_NAME}/api/'
@@ -19,7 +21,6 @@ OAUTH_CREDENTIALS = {
'blender-id': { 'blender-id': {
'id': 'CLOUD-OF-SNOWFLAKES-42', 'id': 'CLOUD-OF-SNOWFLAKES-42',
'secret': '##DEFINE##', 'secret': '##DEFINE##',
'base_url': 'http://id.local:8000/',
} }
} }