From b2d10b5ca7178d54ee3c7c24a06a2bc3cc6ab4dc Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Fri, 22 Jun 2018 19:40:10 +0200 Subject: [PATCH] Expose BLENDER_ID_ENDPOINT in example config --- config_local.example.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config_local.example.py b/config_local.example.py index da87452..a05d631 100644 --- a/config_local.example.py +++ b/config_local.example.py @@ -2,6 +2,8 @@ import os DEBUG = True +BLENDER_ID_ENDPOINT = 'http://id.local:8000' + SERVER_NAME = 'cloud.local:5001' SCHEME = 'http' PILLAR_SERVER_ENDPOINT = f'{SCHEME}://{SERVER_NAME}/api/' @@ -19,7 +21,6 @@ OAUTH_CREDENTIALS = { 'blender-id': { 'id': 'CLOUD-OF-SNOWFLAKES-42', 'secret': '##DEFINE##', - 'base_url': 'http://id.local:8000/', } }