Where do you set the path to which the command collectstatic
uploads files?
I thought it was STATIC_ROOT
. Mine is set as follows in settings.py
STATIC_ROOT = 'http://%s.s3.amazonaws.com/static/' % AWS_STORAGE_BUCKET_NAME
However, it is uploading my files to http://%s.s3.amazonaws.com/
and dumping it in the root rather than the static
folder.
What am I doing wrong?