Hey there,

it’s been a while since my last post. Since then - with the help of this awesome community - I have added multiple new features and fixed a lot of bugs.

Most importantly there is now a working demo alongside a shiny new landing page.

And here are some more fun features I added since then:

  • Trail drawing: in addition to uploading you GPX, TCX or KML files, you can now also simply draw a trail by defining multiple waypoints. The route between them will be calculated automatically.
  • Sharing trails: simple and straightforward - you can share your trails with other users and let them view or edit.
  • Printing trails: there is now a dedicated print view. Plan your adventure digitally and then take it with you on paper.
  • wanderer is now available in 8 different languages (thanks to translators from the community). If you would like to contribute a translation you can do so here.
  • You can now bulk upload multiple trails at once simply by putting them in a dedicated auto-upload folder

And much more. I’d be happy if you give it a try in case you haven’t yet.

GitHub repo: https://github.com/Flomp/wanderer

  • @tuhriel
    link
    English
    2
    edit-2
    17 days ago

    having the same issue, could you give some infos what you changed in the network settings?

    edit: hadn’t updated the ORIGIN env correctly (only updated the port): classic case of RTFM

    • walden
      link
      fedilink
      English
      2
      edit-2
      17 days ago

      Mine was having some weird problem with docker, I think it must be a docker bug. Basically it put the Wanderer stuff at the very bottom of the routes (running “sudo route” on Debian lists the routes). The last entry in the routes table needs to be eth0 or the equivalent so that stuff can loop back to the beginning of the list. At least that’s my understanding.

      So anyway, to get around that bug/limitation I had to create a static docker network which I called “wanderer-static” using docker network create --attachable -d bridge --subnet 172.28.0.0/16 --gateway 172.28.0.1 wanderer-static. Choose a subnet that’s not being used already.

      Then in the docker compose file, point everything at that network by:

      Removing

       networks:
         wanderer:
           driver: bridge
      

      Adding

      networks:
        wanderer-static:
          external: true
      

      And finally, pointing each service to that network. Under each service you should have:

          networks:
            - wanderer-static
      

      I also had to update the ORIGIN and whatever else to http://wanderer-static:7000, etc.