s3

Posts tagged with #s3
Total: 1

Local S3 with MinIO in Django

Notes | 2021-11-06 (updated 2025-10-25) | 2 min read
#django #minio #python #s3

In production I would consider it best practice to use a S3 solution for serving assets. Namely static files and user-generated media.

This describes my setup on how to do this locally too.

The main benefit for me is that there is less of a difference between environments and I can test S3 specific features in my app.

Setup

I will assume a already working Django project and MacOS with [[brew]] installed, but brew specific parts are easilly replicated on different systems using their native package managers.

Read more…