You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am deploying a Django app on Microsoft Azure App Services and I used Whitenoise for static file handling. My application breaks when I start using the STORAGES variable in my production settings. When I comment this setting out it works perfectly.
I have tried several things:
When I replace the STORAGES whitenoise string with the Django string the app works correctly on Azure. So it seems to be a mistake caused by the WhiteNoise setting.
When I use whitenoise.storage.CompressedStaticFilesStorage it also works.
Detailed error for the ManifestCompressedStatisFilesStorage is: Missing staticfiles manifest entry for 'admin/css/base.css'
Python Version
3.8.10
Django Version
4.2.5
Package Version
6.6.0
Description
I am deploying a Django app on Microsoft Azure App Services and I used Whitenoise for static file handling. My application breaks when I start using the STORAGES variable in my production settings. When I comment this setting out it works perfectly.
I have tried several things:
Detailed error for the ManifestCompressedStatisFilesStorage is: Missing staticfiles manifest entry for 'admin/css/base.css'
You can find my full code here: https://github.com/NickMol/Django-React-Deploy-Tutorial/tree/main/backend
My deployment settings (deployment.py) are listed down below:
The text was updated successfully, but these errors were encountered: