Azure Post Deployment Script Commands
问题 I have a Django web app on Azure. I'm using Azure's built in continuous deployment, so I don't have any .deployment files within my repo. However, in order for my application to work correctly, I have to manually install a couple packages after that aren't available via pip. So after every deployment, I have to SSH into the deployment and execute the following 2 commands: source home/site/wwwroot/pythonenv3.6/bin/activate sudo apt-get install XXX XXX XXX I believe I can simply execute this