When attempting to run stormberry migrate with all the documented environment variables set, migrate was still attempting to use 127.0.0.1. Looking at the source in lib/src/core/database.dart the environment variable is named DB_HOST_ADDRESS not DB_HOST. It is more common to use the latter but a README documentation change seemed appropriate here in case the variable name is intentional.
When attempting to run
stormberry migrate
with all the documented environment variables set, migrate was still attempting to use 127.0.0.1. Looking at the source inlib/src/core/database.dart
the environment variable is namedDB_HOST_ADDRESS
notDB_HOST
. It is more common to use the latter but a README documentation change seemed appropriate here in case the variable name is intentional.