Skip to content

praekeltfoundation/molo.servicedirectory

Repository files navigation

molo.servicedirectory

A molo module for calling service directory.

The following keys should be set in the django projects settings file (the values are only examples):

SERVICE_DIRECTORY_API_BASE_URL = 'http://0.0.0.0:8000/api/'

SERVICE_DIRECTORY_API_USERNAME = 'root' SERVICE_DIRECTORY_API_PASSWORD = 'admin'

GOOGLE_PLACES_API_SERVER_KEY = 'thisisnotarealkeyreplaceitwithyourown'

ideally things like the passwords and api keys should be kept out of the repository and possibly included in the settings through importing from a secrets file that is ignored by the version control.

eg in settings.py:

try:
from secrets import *
except ImportError:
raise
Code Coverage molo.servicedirectory Docs