Thanks, now I'm facing an issue with createsuperuser
(env) [username@opalX mediacms]$ python manage.py createsuperuser
Username: myusername
Email address: myself@example.com
Password:
Password (again):
Traceback (most recent call last):
File "/home/username/apps/myProject/env/lib/python3.10/site-packages/kombu/utils/functional.py", line 32, in __call__
return self.__value__
AttributeError: 'ChannelPromise' object has no attribute '__value__'. Did you mean: '__call__'?
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/username/apps/myProject/env/lib/python3.10/site-packages/kombu/transport/virtual/base.py", line 951, in create_channel
return self._avail_channels.pop()
IndexError: pop from empty list
PS : I skipped #3 since I'm using upstash (which I find easier for redis)
REDIS_LOCATION = "redis://default:secretPassword@some-name-987654.upstash.io:6379/1"
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": REDIS_LOCATION,
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
},
}
}
I also skipped email settings in #6.
Could this have caused the superuser issue ?