cookiecutter / cookiecutter-django

Cookiecutter Django is a framework for jumpstarting production-ready Django projects quickly.
https://cookiecutter-django.readthedocs.io
BSD 3-Clause "New" or "Revised" License
12.13k stars 2.9k forks source link

Missing staticfiles manifest #1673

Closed pygabo closed 6 years ago

pygabo commented 6 years ago

Missing staticfiles manifest entry for 'lib/flickity/dist/flickity.min.css' error on heroku

webyneter commented 6 years ago

@joseGabriel06 please, re-open the issue following our Bug Report issue template.

luzfcb commented 6 years ago

@joseGabriel06 by default, cookiecutter-django not use flickity css/js . so the problem should be your own code. you probably forgot to download the files from flickity and put inside static directory and change your the path to flickity inside the static django templatetag on your html

dinoilic commented 6 years ago

I have a similar problem with the Docker deployment. I can see the docker-compose -f production.yml up outputs the collectstatic output however when I go to the URL I'm using I get the following error:

django_1    | ValueError: Missing staticfiles manifest entry for '/images/favicon.ico'

When I try to search for the staticfiles folder I can't find any in the app folder inside the container. Any advice?