@sdetweil with the command from the website of MagicMirror
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
O
Latest posts made by Omensch
-
RE: Problems with my Config file
-
RE: Problems with my Config file
@EdO my problem is that when I run MM, it sais: please create config file
-
RE: Problems with my Config file
well I don’t know what this really means.
do you have an idea?pi@raspberrypi:~ $ npm run config:check npm ERR! Linux 4.4.50-v7+ npm ERR! argv "/usr/bin/node" "/usr/bin/npm" "run" "config:check" npm ERR! node v6.17.1 npm ERR! npm v3.10.10 npm ERR! path /home/pi/package.json npm ERR! code ENOENT npm ERR! errno -2 npm ERR! syscall open npm ERR! enoent ENOENT: no such file or directory, open '/home/pi/package.json' npm ERR! enoent ENOENT: no such file or directory, open '/home/pi/package.json' npm ERR! enoent This is most likely not a problem with npm itself npm ERR! enoent and is related to npm not being able to find a file. npm ERR! enoent npm ERR! Please include the following file with any support request: npm ERR! /home/pi/npm-debug.log
-
Problems with my Config file
Hey guys,
I just refound my old pi and now I am trying to create a MagicMirror. I came pretty far now I have a problem with my config file.If you could help me it would be great :D
Thanks for your help.
/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ var config = { port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], language: 'de', timeFormat: 24, units: 'metric', modules: [ { module: 'alert', }, { module: "updatenotification", position: "top_bar" }, { module: 'clock', position: 'top_left' }, { module: 'MMM-DWD-WarnWeather', position: 'top_left', header: 'DWD Wetterwarnungen', config: { region: 'Rhein-Neckar-Kreis und Stadt Heidelberg', changeColor: true, interval: 5 * 60 * 1000, // every 5 minutes longversion: true, loadingText: 'Warnungen werden geladen...', noWarningText: 'Keine Warnungen' } }, { module: 'currentweather', position: 'top_right', config: { location: 'Heidelberg', locationID: '2907911', //ID from http://www.openweathermap.org appid: 'd8b2c41a44ce77e3c34237894cbf055b' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather Forecast', config: { location: 'Heidelberg', locationID: '2907911', //ID from http://www.openweathermap.org appid: 'd8b2c41a44ce77e3c34237894cbf055b' } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "Sport", url: "http://www.sport1.de/news.rss" } ], showSourceTitle: true, showPublishDate: true } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "Tagesschau", url: "http://www.tagesschau.de/xml/rss2" } ], showSourceTitle: true, showPublishDate: true } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "Heise News", url: "https://www.heise.de/newsticker/heise-atom.xml" } ], showSourceTitle: true, showPublishDate: true } }, { module: "calendar", header: "Events", position: "top_right", config: { calendars: [ { symbol: "calendar-check-o ", url: "https://calendar.google.com/calendar/embed?src=h5gvpq6g8rhfk2lbu8n70rc71g%40group.calendar.google.com&ctz=Europe%2FBerlin" } ] } }, { module: "MMM-NowPlayingOnSpotify", position: "top_bar", config: { clientID: "69f1b99772754d889d9a7542303fbe1e", clientSecret: "*******************************", accessToken: "BQA_OLriFvy1ORb-Um55wNFHQE5Mw9yhqoVINvkTUlBD-HYL9So_WEJz4vh5lDGW1nAiTjWnZa0x0hq5PWWMIrrGl4XtEAOl6ErU5bCxsb4hCEAAFH7PT5uXFBO6ni_cDM8ODEutvTHyuNLsHoceZQ", refreshToken: "AQBr-Ft2KPpjCERS1jfHdcg74gKlnL_otE4NKKVCGeVL3_0a-5G7L1AeBu8RHaZsowLV6pOAlaiLduave_Ea1nVBuxbdGKr8iYiSQ4XbHLybk-fSvVOYgoXTocQIwUUAK0o" } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== 'undefined') {module.exports = config;}