Hi Microsoft Developer, I have deployed the app and the build is successful however when accessing the url, application error page was shown. Could you help give me some pointers?
The /staticfiles story works when i deploy to azure, e.g. accessing using /static/mytestpage.html, but fails when i run the django web app locally for debugging and test. Is extra step necessary for localhost deployment verification of the whitenoise enabled static files experience?
@@AnthonyShaw Thank you! I followed your advice and was able to make the migrations by using the SSH command line interface. After that I activated my virtual environment and made my migrations. I have an other problem now, my app crashes every night at 7pm. It deploys successfully, and will run fine all day, but at 7pm each day I get the "Hey, Python developers!" default page. I would really appreciate any advice.
After deploying to an azure app service visiting django app /admin UI and putting in credential produces a "csrf verification failed. request aborted." Anyone got the fix for this?
Am a fan of the effort placed in these videos, however I encounter an error when attempting to deploy to different region. I have tried numerous things with no solution, unless I upgrade. The error is "This region has quota of 0 instances for your subscription. Try selecting different region or SKU." Please help
Better yet, store your secrets in an azure key vault and make calls from settings to populate these fields via azure sdk. Storing any other keys or credentials there would also be a great idea. If the box is compromised, you bet they’ll check your environment variables… on the other hand, they can’t access your azure key vault without your azure credentials.
I have an other problem, my app crashes every night at 7pm. It deploys successfully, and will run fine all day, but at 7pm each day I get the "Hey, Python developers!" default page. I would really appreciate any advice. I can even redeploy the same exact code after 7, and it'll run fine. Is there some setting I have wrong, or has anyone else experienced this issue?
Getting Error While deploying in Azure "Missing Django modile in Missing Django module in /tmp/8dab243ed45cf00/requirements.txt" I have Django in My Requirements
First uninstall requirements.txt 2nd deactivate 3rd delete virtualenv 4th again create virtual environment 5th active virtual environment 6th pip install -r requirements.txt Then try to deploy. Hope it will work
It showed deployment successful but website is not getting loaded..
The settings you have added aren't clear..could you reply here?
Simply amazing this tutorial, wow
I get a successful deploy but the site only shows " :( Application Error ". It works locally. Is there anyway to troubleshoot this?
Works fine locally but when I Deploy it using MS VS Code, I get a ModuleNotFoundError: No module named 'project' critical error
Thank you so much. Clear tutorial, best app service tutorial
Fantastic! Thanks man i was having hard times deploying django app
for saving database from over written is there any other way that database server
Is it possible to deploy using a docker container?
Hi Microsoft Developer, I have deployed the app and the build is successful however when accessing the url, application error page was shown. Could you help give me some pointers?
I didn't see any 'deploy 'icon near the AppService tag. Is there any update on the compiler?
Click the right click of the app name there you can find an option deploy.
Hey there, do you know whether Azure supports MySQL 8?
Why did you add the middleware part?
The middleware add for Django-admin css and your statick files to work properly.
Most of the time after deploying admin css doesn’t work.
The /staticfiles story works when i deploy to azure, e.g. accessing using /static/mytestpage.html, but fails when i run the django web app locally for debugging and test. Is extra step necessary for localhost deployment verification of the whitenoise enabled static files experience?
can we host two website on a webapp?
Cannot get past the "AZURE this region has a quote of 0 instances for your subscription" Failure from VS Code when trying to "Create New WabAPP"
My Azure for VS Code does not show a "deploy " option. Has this changed?
@@metalthowerright click your app and you can find deploy option
I am getting errors after my deployment because it is not making migrations. Has anyone had a similar issue?
Hi Christoph, Azure won't run make migrations or migrate on deployment, you need to run those locally before deploying.
@@AnthonyShaw Thank you! I followed your advice and was able to make the migrations by using the SSH command line interface. After that I activated my virtual environment and made my migrations. I have an other problem now, my app crashes every night at 7pm. It deploys successfully, and will run fine all day, but at 7pm each day I get the "Hey, Python developers!" default page. I would really appreciate any advice.
@@christophgonzalez2277 Hi how did you make the migrations?
After deploying to an azure app service visiting django app /admin UI and putting in credential produces a "csrf verification failed. request aborted." Anyone got the fix for this?
como puedo subir un contenedor con Django con una base de datos postgres?
Am a fan of the effort placed in these videos, however I encounter an error when attempting to deploy to different region. I have tried numerous things with no solution, unless I upgrade. The error is "This region has quota of 0 instances for your subscription. Try selecting different region or SKU." Please help
I had to upgrade my subscription to pay as you go. Then it worked.
What about SECRET_KEY ? in production you don't upload the file with SECRET_KEY, instead you get it from the environment.
Better yet, store your secrets in an azure key vault and make calls from settings to populate these fields via azure sdk. Storing any other keys or credentials there would also be a great idea. If the box is compromised, you bet they’ll check your environment variables… on the other hand, they can’t access your azure key vault without your azure credentials.
I got "Server Error (500)" and i followed all the steps
First debug = True
Mostly the error comes because you do not migrate
Got the error when I added the white noise settings to the setting.py file, commented them out and it worked fins
I have an other problem, my app crashes every night at 7pm. It deploys successfully, and will run fine all day, but at 7pm each day I get the "Hey, Python developers!" default page. I would really appreciate any advice. I can even redeploy the same exact code after 7, and it'll run fine. Is there some setting I have wrong, or has anyone else experienced this issue?
Thank you so much sir
2:35-5:55! Not a very enjoyable deployment experience, I have to say.
Excelente, muchas gracias.
Why tutorial on mac? XDDD
Getting Error While deploying in Azure "Missing Django modile in Missing Django module in /tmp/8dab243ed45cf00/requirements.txt"
I have Django in My Requirements
First uninstall requirements.txt
2nd deactivate
3rd delete virtualenv
4th again create virtual environment
5th active virtual environment
6th pip install -r requirements.txt
Then try to deploy. Hope it will work