Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rmcampos/aws-react-img-app
React app to save, search and delete images from AWS S3
https://github.com/rmcampos/aws-react-img-app
Last synced: 4 days ago
JSON representation
React app to save, search and delete images from AWS S3
- Host: GitHub
- URL: https://github.com/rmcampos/aws-react-img-app
- Owner: RMCampos
- License: apache-2.0
- Created: 2024-02-16T18:53:25.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-19T12:49:52.000Z (8 months ago)
- Last Synced: 2024-10-11T12:54:07.130Z (27 days ago)
- Language: TypeScript
- Size: 243 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS React Imagery App
Tasks:
- Add items to Amazon S3 Bucket
- List items
- Get item content
- Delete item### Technologies
- Amazon S3
- Docker### App
- React.js
- TypeScript
- Vite.js## Docker
Building:
```sh
docker build -t rmcampos/aws-react-img-app:0.0.1 .
```Running:
```sh
docker run -it --rm \
-p 3000:3000 \
--env-file .env \
--name aws-react-img-app \
rmcampos/aws-react-img-app:0.0.1
```Login:
```sh
docker login -u rmcampos
```Push image
```sh
docker image push rmcampos/aws-react-img-app:0.0.1
```### AWS
Running:
```sh
docker run -it --rm -d \
-p 5173:80 \
--name aws-react-img-app \
docker.io/rmcampos/aws-react-img-app:0.0.1
```