I have a frond-end code(REACT for the UI) and a back-end code (Python - backend logic). Currently the whole setup is hosted as a single service inside an Azure webapp (webapp for containers). I am using dockerfile for building the image.
Now, I need to split the FE and BE logic into microservices, meaning two different services, expose them using two different ports, example, 5000 for front end, 5001 for backend and host it on Azure webapp (docker-compose).
How to I test them? I want to know how to access the services using azure webapp URL via different ports. Is that possible in azure webapps? I can test this in local host, example:
http://localhost:5000 --> Front end http://localhost:5001 --> Back end