March 2020
Intermediate to advanced
608 pages
17h 17m
English
Go through the following steps:
# myproject/settings/_base.py# …GOOGLE_MAPS_API_KEY = get_secret("GOOGLE_MAPS_API_KEY")
# myproject/apps/core/context_processors.pyfrom django.conf import settingsdef google_maps(request): return { "GOOGLE_MAPS_API_KEY": settings.GOOGLE_MAPS_API_KEY, }
# myproject/settings/_base.py ...