?: (staticfiles.E001) The STATICFILES_DIRS setting is not a tuple or list.

  Settings.py file

STATICFILES_DIRS = (
    os.path.join(BASE_DIR,'static')
)

  Change to the following

STATICFILES_DIRS=[(os.path.join(BASE_DIR,'static'))]

Read More: