ddev: add page (#8613)

pull/1/head
Emma Litwa-Vulcu 2022-10-02 19:23:00 -07:00 committed by GitHub
parent 77ad6b02e6
commit 7066c0e0fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

32
pages/common/ddev.md Normal file
View File

@ -0,0 +1,32 @@
# ddev
> Container based local development tool for PHP environments.
> More information: <https://ddev.readthedocs.io>.
- Start up a project:
`ddev start`
- Configure a project's type and docroot:
`ddev config`
- [f]ollow the log trail:
`ddev logs -f`
- Run composer within the container:
`ddev composer`
- Install a specific Node.js version:
`ddev nvm install {{version}}`
- Export a database:
`ddev export-db --file={{/tmp/db.sql.gz}}`
- Run a specific command within a container:
`ddev exec {{echo 1}}`