tyler36
tyler36
> Show the upgrade notice and say "waiting 5 second for you to see this..." Deliberately slowing down the user experience is not good. This would be annoying if things...
`ddev/ddev@xhgui` had a request to implement a prompt during installation. I dislike prompts because they require interaction. A clear way to pass a value would be ideal.
This would make a great developer training session; how to identify bloat and how to remove it.
Yes, getting errors now: 1. Stop `d10simple` and make new project ```shell ddev stop cd .. mkdir my-cakephp-app cd my-cakephp-app ``` 2. Configure project ```shell $ ddev config --project-type=cakephp --docroot=webroot...
> You have to do a `ddev delete -Oy` d10simple normally That would work. Not sure best way to communicate that to new developers though.
If I have free time, I'll play around. New business year starts next week, so not sure how far I will get.
I thought the flag was `--source` ```shell ddev import-files --source=/path/to/files.tar.gz ```
I find myself typing `ddev addon ...` every other week so I thinks this is a great idea! I thinking going the alias route is probably best; we're more likely...
DDEV does have a way to install commands globally, look at `install.yml` file in [tyler36/ddev-tinker](https://github.com/tyler36/ddev-tinker), [tyler36/ddev-vscode-devcontainer](https://github.com/tyler36/ddev-vscode-devcontainer). Spolier: ``` global_files: - commands/web/tinker ``` This works well for generic commands that can...