Skip to content

Commit c7b95af

Browse files
committed
Set silktide api key in settings using env variable
1 parent 98d3e72 commit c7b95af

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.env.example

+3
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,6 @@ GA_CLIENT_SECRET=
3131
GA_REDIRECT_URI=
3232
GOOGLE_MAP_API_KEY=
3333
GOOGLE_MAP_API_SERVER_KEY=
34+
PRISON_VISITS_API_PERMITTED_IPS=
35+
PRISON_VISITS_API_PERMITTED_TOKENS=
36+
SILKTIDE_API_KEY=

.lando/config/drupal.settings.php

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
$config['geolocation_google_maps.settings']['google_map_api_server_key'] = getenv('GOOGLE_MAP_API_SERVER_KEY');
5959
// Geocoder module API key.
6060
$config['geocoder.settings']['plugins_options']['googlemaps']['apikey'] = getenv('GOOGLE_MAP_API_SERVER_KEY');
61+
// Silktide module API key.
62+
$config['silktide.settings']['apikey'] = getenv('SILKTIDE_API_KEY');
6163

6264
// Environment indicator defaults.
6365
$env_colour = !empty(getenv('SIMPLEI_ENV_COLOUR')) ? getenv('SIMPLEI_ENV_COLOUR') : '#000000';

web/sites/default/settings.php

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
$config['geolocation_google_maps.settings']['google_map_api_server_key'] = getenv('GOOGLE_MAP_API_SERVER_KEY');
5959
// Geocoder module API key.
6060
$config['geocoder.settings']['plugins_options']['googlemaps']['apikey'] = getenv('GOOGLE_MAP_API_SERVER_KEY');
61+
// Silktide module API key.
62+
$config['silktide.settings']['apikey'] = getenv('SILKTIDE_API_KEY');
6163

6264
// Environment indicator defaults.
6365
$env_colour = !empty(getenv('SIMPLEI_ENV_COLOUR')) ? getenv('SIMPLEI_ENV_COLOUR') : '#000000';

0 commit comments

Comments
 (0)