Stanislav Zhuk

Results 84 comments of Stanislav Zhuk

I tested what would be sent to Amplitude after my change: `ddev pull platform123` ```json "event_properties": { "Arguments": null, "Called As": "platform123", "Command Name": "custom-command", "Command Path": "ddev pull custom-command"...

I found the solution (assign a new command instead of reusing), now it sends it as: ```json "event_properties": { "Arguments": null, "Called As": "", "Command Name": "custom-command", "Command Path": "ddev...

A different technique from https://ddev.readthedocs.io/en/stable/users/usage/commands/#nvm ```bash # Reset Node.js to `nodejs_version` ddev nvm alias default system ```

Yes, I meant not to replace `fileutil.CopyDir`, but to add some new function so that it can be used in the same way.

Hi @dbarron, > It looks like this was added to 1.21.4 but I'm on 1.22.5 it does not seem to be working for pantheon. Is it supposed to? I don't...

I found a bug, ddev is supposed to look for an exact match in the `.env`, but it looks for any line that contains that variable. For example, I have...

@bmartinez287 please review this 🙂

I made it work for PRs as well and moved the warning banner, so now the menu doesn't jump, only the content: https://ddev--5855.org.readthedocs.build/en/5855/

I made it work as it should. No more flickering 🎉 Updated the description. If this ever breaks, we have an alternative described in the OP.

About context and host: What I found from `docker/client/client` - there are no methods to get the context name. - https://github.com/moby/moby/discussions/44166 We already use all available env variables with `dockerClient.FromEnv`:...