2022-01-07 21:32:12 +01:00
|
|
|
let config = {
|
2024-10-12 07:53:58 +02:00
|
|
|
address: "0.0.0.0",
|
|
|
|
ipWhitelist: [],
|
2022-01-07 21:32:12 +01:00
|
|
|
timeFormat: 12,
|
|
|
|
|
|
|
|
modules: [
|
|
|
|
{
|
|
|
|
module: "weather",
|
|
|
|
position: "bottom_bar",
|
|
|
|
config: {
|
|
|
|
type: "forecast",
|
|
|
|
location: "Munich",
|
2024-10-11 08:51:00 +02:00
|
|
|
weatherProvider: "openweathermap",
|
2022-01-07 21:32:12 +01:00
|
|
|
weatherEndpoint: "/forecast/daily",
|
2024-10-11 08:51:00 +02:00
|
|
|
mockData: '"#####WEATHERDATA#####"',
|
2022-01-07 21:32:12 +01:00
|
|
|
absoluteDates: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
|
|
if (typeof module !== "undefined") {
|
|
|
|
module.exports = config;
|
|
|
|
}
|