Running a ruby on rails project on my mac. I need to test it on my android phone. Is there a way to view my mac localhost on my android phone?
Additionally, if you want to test on Android/iOS device a PWA Apps developed with Angular, you will need to use:
ng serve --host 0.0.0.0 to start up the server CLI.
ng serve --host 0.0.0.0
If you receive "Invalid Host Header", uses:
ng serve --host 0.0.0.0 --disableHostCheck true