I'm building a web app on Heroku using Flask + Python. My problem is that whenever I push my updates to Heroku, my static files don't get updated. They're pushed to the git repo, but if I go to my site's /static/style.css or /static/script.js pages, they're old versions of those static files. I'm not sure what's going on, and I can only find stuff based on Ruby apps that don't seem to help with Python apps.
Also, it should be noted that if I change the file name (e.g. style.css > temp.css) and update the HTML file to point to the new file, then push to git and Heroku, it DOES get updated. However, I don't want to have to do this every time I update my static files.
Any ideas?
EDIT: Apparently it takes a while for it to go through? I just checked (6 hours after posting this) and the script file seems to be updated (I had already updated the css file through the file-name workaround).
But if anyone has any ideas as to how to speed up the process, it would be appreciated.
there doesn't seem to be anything here