An open API service indexing awesome lists of open source software.

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.

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=''
```