I\'m trying to deploy my Django application to the web, but I get the following error:
You\'re using the staticfiles app without having set the STATIC_ROO
Set the STATIC_ROOT setting to the directory from which you’d like to serve these files, for example:
STATIC_ROOT = "/var/www/example.com/static/"
The settings you are using are for development. Check the Django docs for more information here