I have MyApp/static/MyApp directory
When I run ./manage.py collectstatic, I expect the MyApp directory be copied to STATIC_ROOT but it doesn\'t
I have Downloaded
if you have setup everything properly for static and you are using nginx
then enter this command
sudo nginx -t
You will see error
why your static files aren't being served and fix that specific error
In my case I gave wrong path in my nginx config
location /static {
root /home/ubuntu/myproject/app/static/;
}