Deployed a python 3.10 (Falcon Framework) web app to Azure App Services but Azure default page is still showing up when visiting the app's url

Luca Franzoni 1 Reputation point
2022-11-30T11:29:32.453+00:00

I deployed a very simple python web app developed with Falcon framework, with source code hosted on an Azure DevOps repo, but default azure page is still showing up. Checked the deployment logs but no errors. Here is my project structure:

Root  
      |  
      AzureWebAppBackend  
                     |  
                     __init__.py  
                     app.py  
                     module1.py  
                     module2.py  
     requirements.txt  
     startup.txt  

startup.txt has the following command line code written in it :

                                    gunicorn --bind=0.0.0.0 --timeout 600 --chdir AzureWebAppBackend app:app  

Has anybody faced this issue before?

thanks in advance for your help

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,933 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. brtrach-MSFT 17,731 Reputation points Microsoft Employee Moderator
    2022-12-02T05:08:26.967+00:00

    @Luca Franzoni Can you please verify that your site files were successfully deployed by locating them on the web app storage?

    To view your web app's storage:

    1. go to portal.azure.com
    2. Locate your web app in the portal
    3. Select the 'advanced tools' blade
    4. Select 'go'
    5. Select 'debug console' and then 'cmd'
    6. Navigate to where you expect to find your site files to ensure they are actually landing in the web app

    If you see your site files, let us know so we can move onto the next step with you.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.