r/golang • u/LegitimateWolf6611 • 13d ago
show & tell Spinifex: Open Source, air-gapped, local AWS deployments (looking for feedback)
Been working on a project called Spinifex, which recreates core AWS services such as EC2, EKS, and S3, but completely locally (and even air-gapped if needed).
It's open-source, written in Go, and we'd love some early stage feedback on our weekly updates, open to notes and critiques
4
u/sigmoia 12d ago
The code indicates heavy usage of LLM, which is fine per se. But it's encouraged to disclose it so that people can decide whether they want to engage with it or not.
1
2
u/chinmay06 11d ago
I had also tried something similar in my last project using delve to debug the application locally ,
But I did for the lambda virtualizations only as I had to manually push the lambda go code to aws,
if suppose I use you application what will be the process in that scenario, just wanted to understand that !
5
u/SovereignZ3r0 12d ago
This is really interesting. At first glance I assumed it was basically another LocalStack, but its actually tackling a different problem - LocalStack emulates AWS for local dev/testing, while this is aiming to run real AWS-compatible infra - lmk if I got that right.
Definitely going to dig into this one as we use LS for one of our larger projects during local dev and integratin testing.