I've got a Docker setup with a Redis container, but in between running composer create-project xxxx/craft . and docker-compose up I'd like to run ./craft setup/welcome to get an App ID and a Security Key. Currently if I run it, I'm getting this error: Failed to open redis DB connection, which makes sense because Redis isn't running at this point. It would seem the welcome controller shouldn't care about my Redis connection, in the same way it doesn't care if Craft has a DB connection yet...
Description
I've got a Docker setup with a Redis container, but in between running
composer create-project xxxx/craft .
anddocker-compose up
I'd like to run./craft setup/welcome
to get an App ID and a Security Key. Currently if I run it, I'm getting this error:Failed to open redis DB connection
, which makes sense because Redis isn't running at this point. It would seem the welcome controller shouldn't care about my Redis connection, in the same way it doesn't care if Craft has a DB connection yet...Steps to reproduce
craft setup/welcome
Additional info