mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-27 06:53:19 +00:00
Update cheatsheets
This commit is contained in:
37
ddev
Normal file
37
ddev
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user