https://github.com/andreia/laravel-uppy-upload-app
Sample Laravel App for Multipart Uploads Using Laravel, AWS S3, and Uppy
https://github.com/andreia/laravel-uppy-upload-app
application aws-s3 laravel multipart-uploads s3 upload uppy
Last synced: 8 months ago
JSON representation
Sample Laravel App for Multipart Uploads Using Laravel, AWS S3, and Uppy
- Host: GitHub
- URL: https://github.com/andreia/laravel-uppy-upload-app
- Owner: andreia
- Created: 2021-08-07T23:30:11.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-09T01:21:53.000Z (almost 5 years ago)
- Last Synced: 2025-04-14T06:34:08.124Z (about 1 year ago)
- Topics: application, aws-s3, laravel, multipart-uploads, s3, upload, uppy
- Language: PHP
- Homepage:
- Size: 297 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sample Laravel App for Multipart Uploads Using Laravel, AWS S3, and Uppy
This is a simple app built to demonstrate the use of the [laravel-uppy-s3-multipart-upload package](https://github.com/TappNetwork/laravel-uppy-s3-multipart-upload). It's a fresh default Laravel installation (latest version) and the default package installation.
## Installation
Clone the repository
```
git clone https://github.com/andreia/laravel-uppy-upload-app.git
```
Go to the app directory
```
cd laravel-uppy-upload-app
```
Install dependencies
```
composer install
```
Create an environment file
```
cp .env.example .env
```
Generate a new application key (sets the APP_KEY value in your `.env` file).
```
php artisan key:generate
```
Edit the `.env` file and add your AWS credentials
```
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=
AWS_BUCKET=
```
Install JS libraries
```
npm install
```
Run all Mix tasks
```
npm run dev
```
You're all set!
## Question?
If you have any question please contact me on andreiabohner at gmail.com or on https://github.com/andreia/laravel-uppy-upload-app/discussions
## Screenshots

