authentik icon indicating copy to clipboard operation
authentik copied to clipboard

website: minimalistic readme

Open dominic-r opened this issue 8 months ago • 7 comments

Introduce a minimalistic README for the website, link official website, and direct users to contribution guidelines, and finally also removes build commands from README (as source of truth is website)

Details

REPLACE ME


Checklist

  • [ ] Local tests pass (ak test authentik/)
  • [ ] The code has been formatted (make lint-fix)

If an API change has been made

  • [ ] The API schema has been updated (make gen-build)

If changes to the frontend have been made

  • [ ] The code has been formatted (make web)

If applicable

  • [ ] The documentation has been updated
  • [ ] The documentation has been formatted (make website)

dominic-r avatar Apr 24 '25 19:04 dominic-r

Update on this, I discovered the WebSocket (/socket) and HTTP streaming (/stream) endpoints. These output the backend events such as Lambda invocations, console.logs on Lambda, deployments etc. However like the log files they are missing the console.logs from the React Router action. I assume the sst dev terminal grabs these from the vite server somehow.

For now I'll go with my original process-output-to-file approach.

martinpllu avatar Jun 12 '25 17:06 martinpllu

Yeah you'll need to dig a bit for this. We pull Live Lambda logs into the SST Console. So that's a place to poke around as well.

jayair avatar Jun 13 '25 22:06 jayair

Thanks @jayair. I got an MCP server working with the process-output-to-file approach and I was able to get agents working with it. However I got much better results overall with a simpler rules-based approach: https://github.com/martinpllu/sst-agent-setup

martinpllu avatar Jun 13 '25 22:06 martinpllu

One specific request @thdxr: stream the vite/{whatever web app} logs to files in .sst/logs.

This would allow agents to see everything that a human sees in the terminal.

Currently https://github.com/martinpllu/sst-agent-setup works around this by hardwiring 2>&1 redirection in package.json scripts.

martinpllu avatar Jun 13 '25 23:06 martinpllu