Constellation-Predictor / Predictor /context_processors.py
unknown
initial: predictor service
9f68111
Raw
History Blame Contribute Delete
286 Bytes
import os
from django.conf import settings
def space_urls(request):
return {
'PREDICTOR_BASE_URL': '/',
'CHATBOT_BASE_URL': getattr(settings, 'CHATBOT_SPACE_URL', '/chatbot/'),
'LOCATOR_BASE_URL': getattr(settings, 'LOCATOR_SPACE_URL', '/locator/'),
}