This is a Spring Boot project that uploads images to s3 bucket and then displays them on a web page.
git clone https://github.com/abhishekpatelmc/photofolio.git
amazonProperties.accessKey=ACCESS_KEY
amazonProperties.secretKey=SECRET_ACCESS_KEY
amazonProperties.bucketName=BUCKET_NAME
amazonProperties.region=REGION
mvn clean install
mvn spring-boot:run
Frontend Repo: https://github.com/abhishekpatelmc/photofolio-frontend.git
cd src/main/frontend
npm install
npm run dev
docker build -t photofolio .
docker run -p 8080:8080 photofolio