A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
MMM-Buller: Auth file in place, but no link displayed upon running
-
Hello,
I am trying to get the Buller module work. For authenticating, I downloaded the credentials file, pasted contents in a credentials.json file in MMM-Buller folder (see image below). When I used
npm start
, I do not get any link from the script to authenticate further. What am I doing wrong?***Config: ***
// // Buller - this one will be todo in house { module: 'MMM-Buller', position: 'top_right', header: 'To Do', config: { debug: false, lists: [ { type: 'gTasks', name: 'HomeToDo', updateInterval: 1000 * 60 * 1 * 5, //every minutes icon: 'fas tasks', } ], } },
Output to
npm start
:
Buller folder
-
Realized that I have to give path for credential file. Config file should look like this.
config: { debug: true, credentials: "/home/pi/MagicMirror/modules/MMM-Buller/credentials.json", lists: [
Ran with this, and was given the right link for authenticating. Works!