• 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.

Help with config file

Scheduled Pinned Locked Moved Troubleshooting
5 Posts 3 Posters 2.4k Views 3 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.
  • S Offline
    sullivnc
    last edited by Feb 7, 2017, 9:42 PM

    Can anyone tell me what I did wrong with my config file? Anywhere you see ### is where I removed personal data.

    var config = {
            port: 8080,
            ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
    
            language: "en",
            timeFormat: 12,
            units: "imperial",
    
            modules: [
                    {
                            module: "clock",
                            position: "top_left'"
                            config: {
                                    timeFormat: 12,
                                    displaySeconds: true,
                                    showPeriod: true,
                                    showDate: true,
                                    displayType: "digital",
                                    timezone: "America/New_York",
                    },
                    {
                            module: "calendar",
                            position: "top_left",
                            config: {
                                    calendars: [
                                            {
                                                    symbol: "calendar-check-o ",
                                                    url: "###"
                                            }
                                    ]
                            }
                    },
                    {
                            module: "compliments",
                            position: "lower_third"
                    },
                    {
                            module: "currentweather",
                            position: "top_right",
                            config: {
                                    location: "###",
                                    locationID: "###",  //ID from http://www.openweathermap.org
                                    appid: "###",
                                    roundTemp: true,
                                    showPeriod: true,
                                    showPeriodUpper: true,
                                   showHumidity: true,
                            }
                    },
                    {
                            module: "weatherforecast",
                            position: "top_right",
                            header: "Weather Forecast",
                            config: {
                                    location: "###",
                                    locationID: "###",  //ID from http://www.openweathermap.org
                                    appid: "###",
                                    roundTemp: true,
                                    showRainAmount: true,
                                    colored: trtue,
                            }
                    },
                    {
                            module: "newsfeed",
                            position: "bottom_bar",
                            config: {
                                    feeds: [
                                            {
                                                    title: "The Atlantic",
                                                    url: "https://www.theatlantic.com/feed/best-of/",
                                            },
                                            {
                                                    title: "BBC World",
                                                   url: "feeds.bbci.co.uk/news/world/rss.xml",
                                            }
                                    ],
                                    showSourceTitle: true,
                                    showPublishDate: true,
                                    showDescription: true,
                            }
                    },
            ]
    
    };
    
    /*************** DO NOT EDIT THE LINE BELOW ***************/
    if (typeof module !== "undefined") {module.exports = config;}
    
    
    A 1 Reply Last reply Feb 7, 2017, 10:12 PM Reply Quote 0
    • A Offline
      Alvinger @sullivnc
      last edited by Feb 7, 2017, 10:12 PM

      @sullivnc
      There is a curly brace missing in the config field of the clock module.

      1 Reply Last reply Reply Quote 1
      • C Offline
        cowboysdude Module Developer
        last edited by Feb 8, 2017, 2:57 AM

        Like this :)

        {
                                module: "clock",
                                position: "top_left'"
                                config: {
                                        timeFormat: 12,
                                        displaySeconds: true,
                                        showPeriod: true,
                                        showDate: true,
                                        displayType: "digital",
                                        timezone: "America/New_York",
                                     }
                        },
        
        1 Reply Last reply Reply Quote 0
        • A Offline
          Alvinger
          last edited by Alvinger Feb 8, 2017, 9:21 AM Feb 8, 2017, 9:20 AM

          The position line for the clock module is also wrong, it should be like this:

          position: "top_left",
          

          I recommend that you use a lint tool (e.g. eslint) to do syntax checking. It will find most of the errors.

          1 Reply Last reply Reply Quote 1
          • S Offline
            sullivnc
            last edited by Feb 8, 2017, 12:18 PM

            Thanks guys, appreciate the help.

            1 Reply Last reply Reply Quote 0
            • 1 / 1
            1 / 1
            • First post
              5/5
              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