Akiba

Results 32 comments of Akiba

> The commands that have no right to create files may be the same ones that can be run without docker. Probably a superset of that. I wouldn't expect something...

Something in the `ddev restart` processing seems to be part of the issue. If you use `ddev start` instead, then DDEV_PRIMARY_URL always has a value: ``` host DDEV_PRIMARY_URL=http://127.0.0.1:55549 container DDEV_PRIMARY_URL=http://127.0.0.1:55549...

> > If you use `ddev start` instead, then `DDEV_PRIMARY_URL` always has a value > > It doesn't for me, at least on Linux. Yeah, it seemed that way to...

> > Actually, I would love it if the [DDEV Integration](https://plugins.jetbrains.com/plugin/18813-ddev-integration) plugin was also listed alongside the Drupal-specific plugins in the search above. "DDEV Integration" plugin would squeeze itself in...

That should work as suggested for Linux and MacOS, but for Windows, we'd need bat files as well. For example, composer.bat: ``` @echo off ddev exec true && ddev composer...

I got a custom DDEV executor to work for composer. I don't know yet if there's an interface I can use for NPM as well. If there is, then this...

There are options for node.js as well, but they're not nearly as straight-forward to use and implement as the composer one. But still, looking like there is a path forward...

> I got a custom DDEV executor to work for composer. I don't know yet if there's an interface I can use for NPM as well. If there is, then...

> When the project is stopped, and I click "Install" inside the `composer.json`, a popup window appears, click "OK", and nothing happens (expected behavior?): Intended, but lacking feedback to inform...

Will also have to take another crack at a similar solution for NodeJS. The problem there is that the API is a *lot* more complicated than for composer, and I...