Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 462 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 462 Bytes

Images Resizer App

FastAPI application to resize thousands of images asynchronously in few minutes from an S3 bucket.

Run app in development mode

$ pip install -r requirements.txt
$ export PYTHON_ENV=development
$ uvicorn src.main:app --reload

Run app in production mode

$ docker build -t images-resizer-app:latest .
$ docker-compose up -d