Olá.
Estou com problema quando executo o comando python manage.py collectstatic
ele retorna o seguinte erro
raise ImproperlyConfigured("You're using the staticfiles app "
django.core.exceptions.ImproperlyConfigured: You're using the staticfiles app without having set the STATIC_ROOT setting to a filesystem path.
Código:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'receitas/templates')],
'APP_DIRS': True,
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATIC_URL = '/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'alurareceita/static')
]
OBS:
Quando executo o comando python manage.py collectstatic
aparece a seguinte pergunta
Segue o projeto no github: https://github.com/Paulofilho08/AluraReceita-Django.git
Grato.