this post was submitted on 27 Jun 2026
102 points (87.5% liked)
Programming
27640 readers
196 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Interesting. We used the free localstack at a previous job and it kind of sucked. Mostly we were trying to do S3, and it made adding a lot of files kind of painful. Looks like this has better support for "I need to load a bunch of files into S3 when I start working".
Can you map a directory and subfolders to S3 with this, or so you need to make calls to "upload" everything?
Thanks for trying LocalEmu :). Yes, you can map a directory without scripting per-file uploads.
aws s3 sync ./mydir s3://mybucket/works against LocalEmu out of the box (orawsemu s3 syncwith the bundled zero-config CLI). For "always populated on start", drop a one-line script in/etc/localemu/init/ready.d/and it runs on every boot:Where
init/ready.d/seed.shdoesawsemu s3 sync /fixtures s3://mybucket/. OrPERSISTENCE=1if you'd rather load once and have it stick.LocalStack inspired a lot of this, we're the free open-source continuation.