Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run django manage.py command on Azure App Service

I would like to execute Django migrate command on azure app service in my application,

$ python manage.py migrate

but I have no idea how to do this.

like image 672
Cody Avatar asked Feb 07 '23 07:02

Cody


2 Answers

As common scenario, we leverage virtual environment to handler python scripts as the official guide shows. If so, it may raise exceptions if we use the Azure Python runtime to run the commands because of lacking of dependencies.

Usually, we can leverage Kudu Console site of your Web Apps or Visual Studio Online extension to modifying scripts or executing commands.

Kudu Console site:

  1. You can login the Kudu Console site whose url is https://<your_web_app_name>.scm.azurewebsites.net/DebugConsole
  2. cd to d:\home\site\wwwroot which is the root directory of your application.
  3. run the command env\Scripts\python.exe manage.py migrate (assume your virtual environment is env in the root directory)

Visual Studio Online extension:

  1. Install VSO extensio, you can refer the answer of How to install composer on app service?
  2. Login VSO editor site, find the open console button to open the cmdlet for commands, you can find this button in the left navigation bar.enter image description here

Any further concern, please feel free to let me know.

like image 110
Gary Liu Avatar answered Feb 12 '23 11:02

Gary Liu


You can run Python code inside your Azure web application. You have to make sure Python is enabled for the app though:

enter image description here

Then - you can probably wrap your call to python manage.py migrate in a batch script and call it in the startup task for your webapp.

Startup tasks are described here: https://azure.microsoft.com/en-us/documentation/articles/cloud-services-startup-tasks/ and what it boils down to is that you have to bundle your batch script with your application, and modify the ServiceDefinition.csdef and add the startup task in the XML like so:

<Startup>
    <Task commandLine="Startup.cmd" executionContext="limited" taskType="simple" >
        <Environment>
            <Variable name="MyVersionNumber" value="1.0.0.0" />
        </Environment>
    </Task>
</Startup>
like image 31
Jochen van Wylick Avatar answered Feb 12 '23 10:02

Jochen van Wylick