Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 453 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 453 Bytes

Imagio Server

Image resizing and cropping on request.

Run

  • Using local filesystem:
    cargo run --release -- --store <IMAGES_PATH> --cache <CACHE_PATH> fs serve
    
  • Using S3:
    cargo run --release -- --store <IMAGES_PATH> --cache <CACHE_PATH>         \
      --bucket <BUCKET> --region <REGION> --endpoint <ENDPOINT>               \
      --access-key-id <ACCESS_KEY_ID> --secret-access-key <SECRET_ACCESS_KEY> \
      s3 serve