django-job-portal
django-job-portal copied to clipboard
basic installation failed
Hi,
create venv pip install -r requirements.txt python manage.py collectstatic
getting the following error:
django-job-portal>python manage.py collectstatic Post-processing 'vendor\bootstrap\js\bootstrap.min.js' failed!
Traceback (most recent call last):
File "manage.py", line 15, in
The JS file 'vendor\bootstrap\js\bootstrap.min.js' references a file which could not be found: vendor/bootstrap/js/bootstrap.min.js.map
Please check the URL references in this JS file, particularly any relative paths which might be pointing to the wrong location.
workaround (3 options)- add missing files (all .map) remove css comments removing STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"
https://stackoverflow.com/questions/26829435/collectstatic-command-fails-when-whitenoise-is-enabled
what is the proper solution? (i am new with Django framework )