ehmatthes / django-simple-deploy

A reusable Django app that configures your project for deployment
BSD 3-Clause "New" or "Revised" License
304 stars 26 forks source link

Does not collect static files outside of static/. #293

Open ehmatthes opened 3 months ago

ehmatthes commented 3 months ago

I deployed a project to fly, and static files were missing. The project had some files in a root css/ directory, which was in STATICFILES_DIRS. But in the fly-specific settings block, STATICFILES_DIRS is set to static/. It should have static/ appended if it's not already there? It should not write over whatever STATICFILES_DIRS was.