Appraise
Appraise copied to clipboard
Minor error in settings.py prevents collectstatic to work
In settings.py, STATIC_ROOT = os.path.join(ROOT_PATH, '/static-files'), remove the leading slash, since otherwise os.path.join just returns /static-files.
Found the same issue. This solution works great.