This would make things easier for automated setups and custom scripts.
For example: Check if craft installed and only then run ./craft migrate/all
The PR allows us to create composer scripts like this one:
"@php craft setup/is-installed && @php craft migrate/all || return 0"
This would be really useful for CI and for Docker-ized setups
Good idea! Just added an install/check command for Craft 3.5.
Most helpful comment
Good idea! Just added an
install/checkcommand for Craft 3.5.