Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can add topics below ahead of time, or add them during the meeting.

2024-11-04

  • Wordpress WordPress plugin for commerce

  • Speed of change to microfrontends makes it difficult to want to contribute

  • https://www.youtube.com/watch?app=desktop&v=N5PAU-vYrN8

  • robots.txt for most MFEs

    • Caddyfile could add a robots.txt like this to the MFE container, with varying restrictions based on the MFEs within the container:

    • Code Block
      # robots.txt
      
      {% for app in MFE_APPS %}
      {% if app['no-crawl'] % }
      User-agent: *
      Disallow: /{app}
      {% edif % }
      {% endfor %}
      
      User-agent: *
      Disallow: /learning/course/*/progress  # Don't crawl learner progress pages

...