This is a simple logger which stores and serves logs from local files.
- Go 1.24+
go build main.goto compile the code and obtain a binarymain../mainwill start on port8002by default, set the env varPORTto change.
GET /bob_logs/{run-id}: Sends log lines if the run exists, send follow=true to stream live changes.PUT /bob_logs/{run-id}: Ingests log data via PUT body for a given run.DELETE /bob_logs/{run-id}: Deletes the logs for the run.GET /ping: Responds with anAck.