MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. gggg1981gggg
    MagicMirror² v2.20.0 is available! For more information about this release, check out this topic.
    G
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    gggg1981gggg

    @gggg1981gggg

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    gggg1981gggg Unfollow Follow

    Latest posts made by gggg1981gggg

    • RE: Need to npm install valid-url everytime I deploy MM

      @sdetweil

      calendar hasn’t used valid-url for almost a year.(2.16).

      That would make sense as I had this problem for quite a while everytime I was moving docker volumes between devices but I decided to ask for help just today.
      I removed

      /modules/default
      

      added dns entry to docker-compose as my calendar module could’t reach google and it is working now.
      Thank you

      posted in Troubleshooting
      G
      gggg1981gggg
    • Need to npm install valid-url everytime I deploy MM

      Hi there.
      I love MM but I have a problem where everytime before deploying the container I have to edit the config and set the module calendar to disabled

      { disabled: true,
            module: "calendar",
            header: "Cal",
            position: "bottom_right",
            config: {
              calendars: [
                {
                  symbol: "calendar-check",
                  
      	    url: "mycal"
                }
              ]
            }
          },
      
      

      then after starting the container I go into the container

      npm install valid-url
      

      then I get prompt and need to

      npm audit fix
      

      After all that I edit the config again and set the module calendar to enabled and everything works fine

      { disabled: false,
            module: "calendar",
            header: "Cal",
            position: "bottom_right",
            config: {
              calendars: [
                {
                  symbol: "calendar-check",
                  
      	    url: "mycal"
                }
              ]
            }
          },
      
      

      Without doing that the container won’t work.

      How can I fix that?

      posted in Troubleshooting
      G
      gggg1981gggg