Stanislav Zhuk

Results 84 comments of Stanislav Zhuk

> https://github.com/ddev/ddev/issues/6071#issuecomment-2102658089 @agarzola please test: - #6420

I personally use Buggregator for Var Dumper integration (a server for `symfony/var-dumper`), run it within `ddev_default` network and add `VAR_DUMPER_FORMAT=tcp://buggregator:9912` to the global DDEV config `web_environment`. From my [public](https://github.com/stasadev/bash-scripts/blob/main/docker_app.sh) scripts...

I should note: If we decide to change the port here, we will also need to change `$DDEV_HOST_WEBSERVER_PORT` to `$DDEV_HOST_HTTPS_PORT` in `ddev launch` (and change the Gitpod port, because it...

If it works with drupal10, that's good. But it needs more changes, as I mentioned in my previous comment, because changing the port breaks `ddev launch -m`, `ddev mailpit`: ```...

@jenlampton and @quicksketch, thank you for the feedback! I updated the code to insert `settings.ddev.php` before `settings.local.php` using a regex.

We could use the same technique as for Drupal, where `settings.php` + `settings.ddev.php` are precreated when you run `ddev config`. The only difference with Backdrop is that we don't use...

Then I think we have the same "problem" with Drupal where people run `ddev config` on existing projects, the `include` for `settings.ddev.php` is added *after* the `include` for `settings.local.php` (which...

I reverted the regex. Note that it still contains an important fix for a bug made in: - #6346 The default `settings.php` for Backdrop was lost. I agree that the...

I opened a draft PR: - #6406 --- > Use a flag, `--environment`? I added this flag to `ddev get`. It takes into account the `.env.*` files inside the `.ddev`...

Thanks for the input @GuySartorelli. > I probably wouldn't want to commit `.env.` files any more than I'd want to commit `.env` `.env.*` is much easier for users to understand...