Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Erro ao executar o comando collectstatic

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

Insira aqui a descrição dessa imagem para ajudar na acessibilidadeSegue o projeto no github: https://github.com/Paulofilho08/AluraReceita-Django.git

Grato.

1 resposta
solução!

Olá olha eu novamente. bem conseguir resolver o problema, somente alterei o LANGUAGE_CODE = para pt-br. Peço desculpa pois no começo do curso foi feito essa configuração.

#Segui em frente.