https://github.com/gomeslucasm/s3-front-upload-poc
Client-Side Amazon S3 upload.
https://github.com/gomeslucasm/s3-front-upload-poc
aws aws-s3
Last synced: 2 months ago
JSON representation
Client-Side Amazon S3 upload.
- Host: GitHub
- URL: https://github.com/gomeslucasm/s3-front-upload-poc
- Owner: gomeslucasm
- Created: 2021-11-06T14:20:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-28T01:12:22.000Z (over 4 years ago)
- Last Synced: 2025-01-08T19:15:17.905Z (over 1 year ago)
- Topics: aws, aws-s3
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# s3-front-upload-poc
Amazon s3 upload via client.
Based on [Upload Images Directly to S3 from Front End](https://www.youtube.com/watch?v=yGYeYJpRWPM&ab_channel=SamMeech-Ward)
# Running
```
cd server
npm start
```
The server will be run on localhost:8080
# Installing dependencies
```
npm install
```
# Environment
Create an `.env` file on `/server` with the credentials.
```
REGION=''
BUCKET_NAME=''
AWS_ACCESS_KEY_ID=''
AWS_SECRET_ACCESS_KEY=''
```