top | item 47000525

(no title)

allovertheworld | 16 days ago

Any good alternatives for local development?

discuss

order

gardnr|16 days ago

  garaged:
    image: dxflrs/garage:v2.2.0
    ports:
      - "3900:3900"
      - "3901:3901"
      - "3902:3902"
      - "3903:3903"
    volumes:
      - /opt/garage/garage.toml:/etc/garage.toml:ro
      - /opt/garage/meta:/var/lib/garage/meta
      - /opt/garage/data:/var/lib/garage/data

courtcircuits|16 days ago

Go for Garage, you can check the docker-compose and the "setup" crate of this project https://github.com/beep-industries/content. There are a few tricks to make it work locally so it generates an API key and bucket declaratively but in the end it does the job

espenb|16 days ago

I didn't find an alternative that I liked as much as MinIO and I, unfortunately, ended up creating a my own. It includes just the most basic features and cannot be compared to the larger projects, but is simple and it is efficient.

https://github.com/espebra/stupid-simple-s3

luke5441|16 days ago

The listing is perhaps in line with the first two "s". It seems it always iterates through all files, reads the "meta.json", then filters?

chrislusf|15 days ago

I work on SeaweedFS.

Just download the single binary, for most platforms, and run "weed mini -dir=your_data_directory", with all the configuration optimized.

slooonz|16 days ago

versitygw is the simplest "just expose some S3-compatible API on top of some local folder"

ahoka|16 days ago

S3 Ninja if you really just need something local to try your code with.

pikachu0625|16 days ago

OS's file system? Implementation cost has been significantly decreased these day. We can just prompt 'use S3 instead of local file system' if we need to use a S3 like service.

Scarjit|16 days ago

RustFS is dead simple to setup.

Havoc|16 days ago

It has unfortunately also had a fair bit of drama already for a pretty young project

daurnimator|16 days ago

seaweedfs: `weed server -s3` is enough to spin up a server locally