Hello everyone. I'm a newbie on web technologies making some frontend applications in Angular 4. Managed to host an Angular 4 app on a hosting service but it only allows PHP as backend. Searching for a solution that would allow to build Python backend apps I stumbled upon this site and fell in love with the consoles and tools it provides.
Already ran the Flask tutorial successfully and tried to run render_template switching the html page of the tutorial for the Angular page generated after running ng build --prod. From what I see it's a normal html but when trying to access it I get a blank page with "Failed to load resource: the server responded with a status of 404 (NOT FOUND)" on my JS and CSS files.
I tried refreshing them one by one and get the "net::ERR_ABORTED" error instead.
Also tried to link the index.html page directly using the static files option offered but it gives me the same errors.
Is there something I'm missing or the service only allows to run Python backends?
Also REST apis are the standard way for the frontend and backend to interact?
Thanks a lot for your help!