mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 17:51:39 -05:00
5 lines
244 B
Ruby
5 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
MIN_MINUTES_SPENT_IN_CITY = ENV.fetch('MIN_MINUTES_SPENT_IN_CITY', 60).to_i
|
|
REVERSE_GEOCODING_ENABLED = ENV.fetch('REVERSE_GEOCODING_ENABLED', 'true') == 'true'
|
|
PHOTON_API_HOST = ENV.fetch('PHOTON_API_HOST', nil)
|