Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/example-collection/lambda-image-resizing-client
Demo application for testing lambda function for imager resizing.
https://github.com/example-collection/lambda-image-resizing-client
Last synced: about 5 hours ago
JSON representation
Demo application for testing lambda function for imager resizing.
- Host: GitHub
- URL: https://github.com/example-collection/lambda-image-resizing-client
- Owner: Example-Collection
- Created: 2022-06-23T05:44:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-24T08:47:52.000Z (over 2 years ago)
- Last Synced: 2023-03-06T18:26:27.667Z (almost 2 years ago)
- Language: TypeScript
- Size: 218 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lambda-Image-Resizing-Client
- Sample client application for testing [https://github.com/Example-Collection/Lambda-Image-Resizing-Example]().
## Setup
- (1) Follow and deploy Lambda function for image resizing, using [this code](https://github.com/Example-Collection/Lambda-Image-Resizing-Example).
- (2) Clone this repository to your local machine.
```sh
git clone https://github.com/Example-Collection/Lambda-Image-Resizing-Client.git
```- (3) Install all required dependencies.
```sh
yarn install
```- (4) Create a file called `.env`, and add lambda's API Gateway endpoint as below.
```env
REACT_APP_IMAGE_UPLOAD_URL=https://your-api-gateway-endpoint.com
```- (5) Start application, and begin testing!
```sh
yarn start
```