All checks were successful
Deploy / deploy (push) Successful in 1m8s
14 lines
432 B
Plaintext
14 lines
432 B
Plaintext
<?php
|
|
declare(strict_types=1);
|
|
|
|
// Copy this file to config/secrets.local.php and replace the placeholders.
|
|
// Never commit config/secrets.local.php or place it inside public/.
|
|
|
|
if (getenv('GOOGLE_MAPS_API_KEY') === false) {
|
|
putenv('GOOGLE_MAPS_API_KEY=replace-with-your-google-server-key');
|
|
}
|
|
|
|
if (getenv('AZURE_MAPS_SUBSCRIPTION_KEY') === false) {
|
|
putenv('AZURE_MAPS_SUBSCRIPTION_KEY=replace-with-your-azure-maps-key');
|
|
}
|