I have built an Umbraco 13 app locally using a tutorial(codeshare)and I'm trying to deploy it on Azure app services (web app + database)
EDIT: I've edited this question to my recent progress/blocker
I've got my Azure web app and my repo on Azure devops, and the pipeline runs successfully. After running the pipeline, when I go on my deployed app with the url, the visitor-facing side of the app is not working, I get the 'Your app is running but waiting content' message (the basic azure default screen), but if I go to my backoffice with url/umbraco#/content, I can actually log in and see my content tree, the same as locally and everything looks good.
So what could be happening? How come my backoffice looks good but I have nothing on the normal url for visitors? Any ideas and pointers would be greatly appreciated!!
Sounds like you're really close — great job getting the backoffice working! That “Your app is running but waiting content” screen usually means your homepage isn’t published or linked correctly in Umbraco.
Check the following:
Make sure your root content node is published and has a template assigned.
Confirm the node is set as the start page (check Culture & Hostnames settings).
Also, verify that your pipeline is deploying the correct media and views folders if you're using custom templates.
Happens to the best of us — you're almost there!