Мне нужно обновить sh a js файл в моей папке stati c files, однако всякий раз, когда я запускаю python manage.py collectstati c, создается клон моей папки stati c files. создан в другой части проекта, а файл js все еще не обновлен. Я попытался изменить переменную STATIC_ ROOT в файле settings.py на фактическое местоположение моей папки stati c, но, похоже, он не обновляет sh, потому что предупреждающее сообщение collectstati c в консоли говорит он будет сохранен в совершенно другом месте.
Структура моего проекта
resume_V6-test
-resume
-home
-static (actual location)
-resume
-settings.py
-store
-staticfiles (clone of the static folder)
-users
, а мой settings.py -
# Commented out the location it was before I tried fixing the error
#STATICFILES_DIRS = [
#os.path.join(BASE_DIR, "static"),
#'/resume_V6-test/resume/home/static',
#]
#STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATIC_ROOT = os.path.join(BASE_DIR, 'home/static')
STATIC_URL = '/static/'
И ошибка сообщение:
python manage.py collectstatic
You have requested to collect static files at the destination
location as specified in your settings:
C:\resume_V6-test\resume\staticfiles
This will overwrite existing files!
Are you sure you want to do this?
Спасибо