Documentation for macOS
#Set up MinIO
MinIO is an open-source, S3 compatible object storage and works perfectly if you want to use the same APIs locally that you use on your production environment. You can set up MinIO as a Herd service and log into its dashboard to create your first storage bucket with the same credentials that you use as environment variables.
#Configuration
Before you can connect your application to MinIO, you need to create a first bucket within the dashboard. The easiest way to access the dashboard or view the logs of the service is via the Herd service configuration.
#Dashboard
You can access the MinIO dashboard via http://localhost:PORT
or by using the dashboard button in the services list. Log in with the AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY
to create your first bucket and use the object storage like in your production environment.
#Configuration
After setting the name, port, and autostart options and starting up the service, please log into the dashboard and create a bucket to be able to upload files.
You can then adjust your .env
file in order to connect to your local MinIO service.
AWS_BUCKET=herd-bucket # Your bucket nameAWS_ACCESS_KEY_ID=herdAWS_SECRET_ACCESS_KEY=secretkeyAWS_USE_PATH_STYLE_ENDPOINT=trueAWS_URL=http://localhost:9000/YOUR-BUCKET-NAMEAWS_ENDPOINT=http://localhost:9000
You can find additional information about configuring MinIO with Laravel in the Laravel documentation.