9 directories, 34 files
I created my static file with the following command:
python manage.py collectstatic
source:
Managing static files (e.g. images, JavaScript, CSS).
In my settings.py file I have:
# All settings common to all environments
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static')
I guess this correct configuration or at least this is what I found on line.
I can see the files in my Git repo but I can not understand why they are not populated on the Heroku.
I guess this is a trivial question but if you do not have the knowledge on the subject it can get very very difficult to find the solution.
Does any one had this problem before?
Thank you in advance for your time and effort reading and replying to my question.
If you require any further information do not hesitate to come in contact with me.