Don’t forget to check the error logs and dmesg.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-ModuleScheduler stops working if MMM-PIR is active
-
RE: MMM-FlightsAbove - Display all flights in the sky above you
@Galli :D :D
!! cd MMM-Tabulator !!!??
Thanks for spotting my dumbass typo!!
Clearly you must be the only one who have tried to follow those directions, since nobody else has mentioned this. The line should becd MMM-FlightsAboveetc…So please try again.
-
RE: UI/Data Caching
yeah , you need to save it with a
thisthing. Someone helped me fix this here. So you probably need to do something very similar. (Save the current data, and restore it when someone is trying to use it before the timeout.) -
RE: Core documentation?
Very good question!
Other people have asked about this.
I have asked about this.
The answer isno.It would really help the project (and possibly development) to have that.
I’ve worked on this for ~3 months now, and I’m still clueless as to how it all hang together…
Therefore, there will not be much contribution from my side… -
RE: MMM-FlightsAbove - Display all flights in the sky above you
@Galli Hi! Yes, sorry but I have not made an official npm package for this yet… So you just have to do the git clone and run the install script instead. (And for your own sake, update your node and npm first!)
-
RE: [PM2][ERROR] Permission denied, to give access to current user
You need to install PM2 with sudo (root).
-
RE: MMM-Assistant google-auth.js
script is fixed! Get the latest script and See comment in the issue you started.
-
RE: MMM-Assistant google-auth.js
I don’t think you have installed the module according to the README.
It seem that you never didnpm install.
But there are some other trouble with that script, that I am trying to fix as we speak… -
Moving github issues like a boss!
Here is your CLI tool to migrate or move all (or some) github issues from one repo to another!
Unlike some others, it also copies all the labels and all the tags properties (name, color, description).[card:E3V3A/gh-missue]
This is very useful when your repo is full of crap and you wanna start from afresh but keep your issues.
PS. Require Ruby installed
-
RE: So ... to update MagicMirror I would ... ??
@surger13 Did you read the text?
Make sure you have the latest version of node.js and npm installed.
– That’s exactly what it means. -
RE: What are your top3 modules?
I don’t have half installed as I like…
- [MMM-FlightsAbove] - Show what airplanes are buzzing around the sky above you
- [MMM-NOAA] - The old one, I like very much! (The now one not, too big headers ;)
- [MMM-crytocurrency] - With my own mods, keep me updated what is happening.
-
RE: First mirror
@sforsyth said in First mirror:
a trello todo list board (so my girlfriend and I can both update it from our phones if needs be),
Great mirror, look very neat.
Where is that Trello mod to be found?Can you also give contact info to mirror company?
-
RE: How to update the master branch?
@ninjabreadman said in How to update the master branch?:
@PaulB First, make a backup of your install with
cp -r ~/MagicMirror ~/MM-Backup.Noo! Not a good idea if you’re running on a RPi with small SD card. That is a huge directory:
du -sh ./~1.3GB, already for a quite small install. You might need that space for the update itself. Never good idea to max out your SD card.Rather use
tar, and try one of these:cd ~ # remove `v` flag to avoid huge verbose output tar --exclude={.git,node_modules} -zcvf MM_BAK.tgz ./MagicMirror tar --exclude='node_modules' --exclude='.git' -zcvf MM_BAK.tgz ./MagicMirror # This may require you to have the bash shell option globstar' set. # Check with: 'shopt -s globstar' tar --exclude='**/.git/*' --exclude='**/node_modules/*' -zcvf MM_BAK.tgz ./MagicMirrorThis will avoid getting the huge node_modules and .git directories.
(You can always git init and reset your git origin url to git fetch from the resp directories if needed to re-instate.) -
RE: So ... to update MagicMirror I would ... ??
Just to say it…
It seem that many people having problems, are running something out dated.
Either: nodejs, npm, or pm2.Because of the incredible dependency chain involved for node packages, I can only assume that using a newer versions of one package, will also require a newer version of the package depending on it, and possibly vice versa. Of course when things are working, it all beautiful, but it seem very easy that it doesn’t.
-
RE: So ... to update MagicMirror I would ... ??
You guys should probaly do
pm2 stop mm; pm2 killto make sure it’s not running in the background.Also, AFAIK, I think if you do
git reset --hardyou’d loose all your old config settings and other changes you’ve made? -
RE: Edit view of MMM-Remote-Control doesn't work with cloned MMM-bitcoin module
You should post an issue to the github.
But, that said, I believe (I’ve never used this module) it keep track of changes to main MM
config.jsfile, so if you change it, without restarting MM, this module will get confused. (make sure to usepm2 killto avoid cached files.) -
RE: MMM-Assistant (updated) -- Your voice to the world!
@aelmiri said in MMM-Assistant (updated) -- Your voice to the world!:
/home/pi/MagicMirror/modules/MMM-Assistant/node_modules/google-assistant/components/auth.js:18
throw new Error(‘Missing “keyFilePath” from config (should be where your JSON file is)’);Ok, see solution from @drftg, above.
only file in assets is: config.txt
Of those files, you need to download one, one is generated from script, and another you need to create… Hmm, yes, I see the wiki doc definitely need updating… I’ll try to go through the procedure myself and update wiki after Easter.