I have added some new environment variables to my virtualenv. Added:
export BROKER_URL='amqp://guest:guest@localhost/prod'
to my bin/activate file.
But reloading uswgi does not make the new variables show up in my django app where I try and get it with:
BROKER_URL = os.environ.get('BROKER_URL')