DDEV unlist project
August 7, 2025 · AI Conversations
User
ddev unlist project
Assistant
To **unlist a project in DDEV**, so it no longer appears in `ddev list`, you can run the following command from **inside the project directory**:
ddev delete --unlist
### Explanation:
– `ddev delete` removes the project's containers and volumes.
– `–unlist` ensures the project is also removed from DDEV’s global project list (`~/.ddev/global_config.yaml`).
– **It does not delete your code or files.**
—
### If you're **not inside** the project directory, you can specify the project name:
ddev delete [project-name] --unlist
Replace `[project-name]` with the actual name of your DDEV project.
Let me know if you want to remove all projects or just a specific one.