Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 537 Bytes

File metadata and controls

33 lines (23 loc) · 537 Bytes

Image Processing Web Application

This project is a web-based application designed for image processing tasks, consisting of separate backend and frontend components. Follow the steps below to set up and run the application locally.

Alt text

Run Backend

cd backend
docker build -t image-processing-api .
docker run -d -p 4000:4000 image-processing-api

Run Frontend

cd frontend
npm run install
npm run dev