Results 8 comments of Alex Scott

Also very interested in this. IMHO it doesn't make sense to return the full URL from the JS, just the key should be returned and then the user could provide...

As a workaround, set the placeholder color variable to whatever color you actually want it to be: ```scss $input-placeholder-color: #999; ``` And then make sure Firefox shows it at 100%...

That's great you've been thinking about it and are planning on it! The new "only users can post" enhancement is great too. I might play around with a VanillaJS implementation...

This seems to work now? I think this can be closed perhaps?

FWIW it does look like Django supports `hiredis` and potentially connection pools? From lower down the page at https://docs.djangoproject.com/en/4.0/topics/cache/#redis-1 : > Here’s an example configuration for a redis based backend...

You're only loading the USA-specific datamaps code () but the default scope is world which it won't find if you don't include the world-specific JS.

Hey @allen-munsch and @WisdomPill I'm having an issue with a premium-0 Heroku Redis instance after I upgraded from Redis 5 to Redis 6.2; the latter requires SSL. Can you give...

It seems to work now actually; I added the REDIS_CLIENT_KWARGS settings. ```python CACHES = { 'default': { 'BACKEND': 'django_redis.cache.RedisCache', # Use secure Redis URL available in Redis 6+. # For...