summaryrefslogtreecommitdiff
path: root/secrets.lua
blob: 98051c767533256a77ca0892771e7383dfec27b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-------------------------------------------------
-- Allows to store client specific settings in one place
--
-- @author Pavel Makhov
-- @copyright 2019 Pavel Makhov
--------------------------------------------

local secrets = {
    -- Yandex.Translate API key - https://tech.yandex.com/translate/
    translate_widget_api_key = 'API_KEY',

    -- OpenWeatherMap API key - https://openweathermap.org/appid
    weather_widget_api_key = 'API_KEY',
    weather_widget_city = 'Montreal,ca'
}

return secrets