Open parvez2238 opened 5 days ago
Folder structure
backend/ └── sharing-service/ ├── src/ │ ├── app.js │ ├── config/ │ ├── controllers/ │ ├── models/ │ ├── routes/ │ └── services/ ├── Dockerfile ├── package.json └── .env
Docker command for service build and run sharing-service docker build -t sharing-service . docker run -p 4003:4003 --env-file .env sharing-service
API Gateway POST: http://localhost:4003/api/sharing/create GET: http://localhost:4003/api/sharing/{link}
Sharing Service folder structure
Write the code and upload the test result screen shot from postman.