Enable storing creds via env vars

This commit is contained in:
Sviatoslav Sydorenko 2019-06-03 16:38:05 +02:00
parent 54924ef064
commit d8255e84d7
No known key found for this signature in database
GPG Key ID: 9345E8FEA89CA455
1 changed files with 4 additions and 4 deletions

View File

@ -7,12 +7,12 @@
local secrets = { local secrets = {
-- Yandex.Translate API key - https://tech.yandex.com/translate/ -- Yandex.Translate API key - https://tech.yandex.com/translate/
translate_widget_api_key = 'API_KEY', translate_widget_api_key = os.getenv('AWW_TRANSLATE_API_KEY') or 'API_KEY',
-- OpenWeatherMap API key - https://openweathermap.org/appid -- OpenWeatherMap API key - https://openweathermap.org/appid
weather_widget_api_key = 'API_KEY', weather_widget_api_key = os.getenv('AWW_WEATHER_API_KEY') or 'API_KEY',
weather_widget_city = 'Montreal,ca', weather_widget_city = os.getenv('AWW_WEATHER_CITY') or 'Montreal,ca',
weather_widget_units = 'metric' -- for celsius, or 'imperial' for fahrenheit weather_widget_units = os.getenv('AWW_WEATHER_UNITS') or 'metric' -- for celsius, or 'imperial' for fahrenheit
} }
return secrets return secrets