mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
7 lines
207 B
Ruby
7 lines
207 B
Ruby
# Google requires an API key with a billing account to use their API.
|
|
# The key is stored in config/application.yml.
|
|
Geocoder.configure(
|
|
use_https: true,
|
|
api_key: ENV.fetch('GOOGLE_MAPS_API_KEY', nil)
|
|
)
|