mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
5 lines
244 B
Ruby
5 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
MINIMUM_POINTS_IN_CITY = ENV.fetch('MINIMUM_POINTS_IN_CITY', 5).to_i
|
|
MAP_CENTER = ENV.fetch('MAP_CENTER', '[55.7522, 37.6156]')
|
|
REVERSE_GEOCODING_ENABLED = ENV.fetch('REVERSE_GEOCODING_ENABLED', 'true') == 'true'
|