How can this be accomplished in my Wappler project? I want to review yesterday's access and error logs for example.
Back in my day....apache was needed to handle http requests and logged access and errors to disk. I was today years old when I learned that Node.js handles the http requests and Apache is NOT installed anywhere in my Wappler project or Docker container. However, I am also now aware that Node.js doesn't include standard access and error logging.
So what is typically done when using Node.js, to review logs?
Even though Apache is not used, it's common to use other web servers (acting as reverse proxies) such as nginx or Traefik, so you'd check the access logs of those
In addition to access logs, there's something called Sentry that logs errors to Sentry service (or equivalent), but this is not natively integrated in Wappler yet. I use a GlitchTip instance (which implements the Sentry protocol) on PikaPods, and half followed some tutorial somewhere on this forum