diff --git a/environments/dev/common/config/main-local.php b/environments/dev/common/config/main-local.php index d5bc008..5d242e2 100644 --- a/environments/dev/common/config/main-local.php +++ b/environments/dev/common/config/main-local.php @@ -18,5 +18,12 @@ return [ 'port' => 6379, 'database' => 0, ], + 'amqp' => [ + 'host' => 'localhost', + 'port' => 5672, + 'user' => 'root', + 'password' => '', + 'vhost' => '/', + ], ], ]; diff --git a/environments/prod/common/config/main-local.php b/environments/prod/common/config/main-local.php index 6fb5f85..9be5f6c 100644 --- a/environments/prod/common/config/main-local.php +++ b/environments/prod/common/config/main-local.php @@ -12,5 +12,12 @@ return [ 'port' => 6379, 'database' => 0, ], + 'amqp' => [ + 'host' => 'localhost', + 'port' => 5672, + 'user' => 'root', + 'password' => '', + 'vhost' => '/', + ], ], ];