• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

config file errors?

Scheduled Pinned Locked Moved Troubleshooting
11 Posts 2 Posters 2.3k Views 2 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    adamhrastich
    last edited by Jul 8, 2021, 11:13 PM

    /* Magic Mirror Config Sample
    *

    • By Michael Teeuw https://michaelteeuw.nl
    • MIT Licensed.
    • For more information on how you can configure this file
    • See https://github.com/MichMich/MagicMirror#configuration

    */

    var config = {
    address: “localhost”, // Address to listen on, can be:
    // - “localhost”, “127.0.0.1”, “::1” to listen on loopback interface
    // - another specific IPv4/6 to listen on a specific interface
    // - “0.0.0.0”, “::” to listen on any interface
    // Default, when address config is left out or empty, is “localhost”
    port: 8080,
    basePath: “/”, // The URL path where MagicMirror is hosted. If you are using a Reverse proxy
    // you must set the sub path here. basePath must end with a /
    ipWhitelist: [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”], // Set [] to allow all IP addresses
    // or add a specific IPv4 of 192.168.1.5 :
    // [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”, “::ffff:192.168.1.5”],
    // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
    // [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”, “::ffff:192.168.3.0/28”],

    useHttps: false, 		// Support HTTPS or not, default "false" will use HTTP
    httpsPrivateKey: "", 	// HTTPS private key path, only require when useHttps is true
    httpsCertificate: "", 	// HTTPS Certificate path, only require when useHttps is true
    
    language: "en",
    logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging
    timeFormat: 24,
    units: "metric",
    // serverOnly:  true/false/"local" ,
    // local for armv6l processors, default
    //   starts serveronly and then starts chrome browser
    // false, default for all NON-armv6l devices
    // true, force serveronly mode, because you want to.. no UI on this device
    
    modules: [
    	{
    		module: "alert",
    	},
    	{
    		module: "updatenotification",
    		position: "top_bar"
    	},
    	{
    		module: "clock",
    		position: "top_left"
    	},
    	{
    		module: "calendar",
    		header: "US Holidays",
    		position: "top_left",
    		config: {
    			calendars: [
    				{
    					symbol: "calendar-check",
    					url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics"					}
    			]
    		}
    	},
    	{
    		module: "compliments",
    		position: "lower_third"
    	},
    	{
    		module: "currentweather",
    		position: "top_right",
    		config: {
    			location: "New York",
    			locationID: "5128581", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
    			appid: "c2647e77b86f9ed7922d3cb499204d0"
    		}
    	},
    	{
    		module: "weatherforecast",
    		position: "top_right",
    		header: "Weather Forecast",
    		config: {
    			location: "New York",
    			locationID: "5128581", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
    			appid: "YOUR_OPENWEATHER_API_KEY"
    		}
    	},
    
    ]
    

    };

    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== “undefined”) {module.exports = config;}

    B 1 Reply Last reply Jul 8, 2021, 11:16 PM Reply Quote 0
    • A Offline
      adamhrastich
      last edited by Jul 8, 2021, 11:15 PM

      it says when I run npm run config:check says it’s missing

      1 Reply Last reply Reply Quote 0
      • B Offline
        BKeyport Module Developer @adamhrastich
        last edited by Jul 8, 2021, 11:16 PM

        @adamhrastich the way you posted it, the forum corrupted it.

        Please place ``` around the code next time.

        That being said, go to the magicmirror directory, and type:

        npm run config:check
        

        It’ll help you solve the errors.

        The "E" in "Javascript" stands for "Easy"

        A 1 Reply Last reply Jul 8, 2021, 11:18 PM Reply Quote 0
        • A Offline
          adamhrastich @BKeyport
          last edited by Jul 8, 2021, 11:18 PM

          @bkeyport I ran that code and it says the file is not found

          B 1 Reply Last reply Jul 8, 2021, 11:20 PM Reply Quote 0
          • B Offline
            BKeyport Module Developer @adamhrastich
            last edited by Jul 8, 2021, 11:20 PM

            @adamhrastich Like this:

            pi@officemirror:~ $ cd MagicMirror/
            pi@officemirror:~/MagicMirror $ npm run config:check
            
            > magicmirror@2.16.0 config:check /home/pi/MagicMirror
            > node js/check_config.js
            
            [08.07.2021 16:19.03.333] [INFO]  Checking file...  /home/pi/MagicMirror/config/config.js
            [08.07.2021 16:19.03.575] [INFO]  Your configuration file doesn't contain syntax errors :)
            
            

            The "E" in "Javascript" stands for "Easy"

            A 1 Reply Last reply Jul 8, 2021, 11:22 PM Reply Quote 0
            • A Offline
              adamhrastich @BKeyport
              last edited by Jul 8, 2021, 11:22 PM

              @bkeyport I did and this is what came up.
              ‘’'pi@raspberrypi:~/MagicMirror $ npm run config:check

              magicmirror@2.16.0 config:check /home/pi/MagicMirror
              node js/check_config.js

              [08.07.2021 18:14.40.549] [ERROR] File not found: /home/pi/MagicMirror/config/config.js
              /home/pi/MagicMirror/js/check_config.js:38
              throw new Error(“No config file present!”);
              ^

              Error: No config file present!
              at checkConfigFile (/home/pi/MagicMirror/js/check_config.js:38:9)
              at Object. (/home/pi/MagicMirror/js/check_config.js:73:1)
              at Module._compile (internal/modules/cjs/loader.js:778:30)
              at Object.Module._extensions…js (internal/modules/cjs/loader.js:789:10)
              at Module.load (internal/modules/cjs/loader.js:653:32)
              at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
              at Function.Module._load (internal/modules/cjs/loader.js:585:3)
              at Function.Module.runMain (internal/modules/cjs/loader.js:831:12)
              at startup (internal/bootstrap/node.js:283:19)
              at bootstrapNodeJSCore (internal/bootstrap/node.js:623:3)
              npm ERR! code ELIFECYCLE
              npm ERR! errno 1
              npm ERR! magicmirror@2.16.0 config:check: node js/check_config.js
              npm ERR! Exit status 1
              npm ERR!
              npm ERR! Failed at the magicmirror@2.16.0 config:check script.
              npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

              npm ERR! A complete log of this run can be found in:
              npm ERR! /home/pi/.npm/_logs/2021-07-08T23_14_40_681Z-debug.log
              ‘’’

              B 1 Reply Last reply Jul 8, 2021, 11:24 PM Reply Quote 0
              • B Offline
                BKeyport Module Developer @adamhrastich
                last edited by Jul 8, 2021, 11:24 PM

                @adamhrastich Well, there’s your problem. The config file should be config.js - if you’re trying to use the sample as a base, change to the correct by using mv config.js.sample config.js

                The "E" in "Javascript" stands for "Easy"

                A 1 Reply Last reply Jul 8, 2021, 11:28 PM Reply Quote 0
                • A Offline
                  adamhrastich @BKeyport
                  last edited by Jul 8, 2021, 11:28 PM

                  @bkeyport said in config file errors?:

                  pi@raspberrypi:~/MagicMirror $ mv config.js.sample config.js
                  mv: cannot stat ‘config.js.sample’: No such file or directory

                  B 1 Reply Last reply Jul 8, 2021, 11:29 PM Reply Quote 0
                  • B Offline
                    BKeyport Module Developer @adamhrastich
                    last edited by BKeyport Jul 8, 2021, 11:29 PM Jul 8, 2021, 11:29 PM

                    @adamhrastich in your config subdirectory. ~/MagicMirror/config/

                    The "E" in "Javascript" stands for "Easy"

                    A 1 Reply Last reply Jul 8, 2021, 11:30 PM Reply Quote 0
                    • A Offline
                      adamhrastich @BKeyport
                      last edited by Jul 8, 2021, 11:30 PM

                      @bkeyport oh I’m stupid… thanks so much I can not believe I didn’t see that

                      B 1 Reply Last reply Jul 8, 2021, 11:31 PM Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        1/11
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy