mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-01 05:23:25 +00:00
All test configs have been updated to allow full external access, allowing for easier debugging (especially when running as a container)
26 lines
481 B
JavaScript
26 lines
481 B
JavaScript
let config = {
|
|
address: "0.0.0.0",
|
|
ipWhitelist: [],
|
|
units: "imperial",
|
|
|
|
modules: [
|
|
{
|
|
module: "weather",
|
|
position: "bottom_bar",
|
|
config: {
|
|
location: "Munich",
|
|
weatherProvider: "openweathermap",
|
|
weatherEndpoint: "/weather",
|
|
mockData: '"#####WEATHERDATA#####"',
|
|
decimalSymbol: ",",
|
|
showHumidity: "wind"
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|