I\'m new to heroku and I tried a simple django app without css.
But I just added a css file in my app and when i do this:
git push heroku master
The problem is the absolute path you are using for STATIC_ROOT
isn't found in Heroku server.
To resolve it, consider the following approach.
In your settings.py:
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
STATIC_ROOT= os.path.join(PROJECT_DIR,'staticfiles/')
STATICFILES_DIRS = (
os.path.join(PROJECT_ROOT,'static/'),
)