dropthejase puts Mike on AWS Lambda
The fork repackages Mike's backend to run as a serverless function inside Amazon's cloud rather than as a long-running server.
dropthejase has rebuilt Mike to live inside AWS Lambda - Amazon's serverless compute service, which runs code in short bursts only when a request comes in. The pieces fit together cleanly: an API gateway sits in front, AWS Secrets Manager hands over credentials when the function first wakes up, and S3 (Amazon's object storage) takes over files from the original setup. Authentication now leans on AWS-issued identity claims rather than Mike's default login layer.
It's a foundational shift, not a user-facing feature, and it's specific enough that another fork couldn't lift it wholesale - the auth and storage choices are wired to AWS-only paths. But the shape of the migration is instructive: the team kept the local development path intact while bolting on a parallel cloud path, so contributors can still run Mike on a laptop.
Spotted something wrong? Or know the PR text has fresher detail than the writeup above?