Browse Source

ddev: add page (#8613)

Emma Litwa-Vulcu 2 years ago
parent
commit
7066c0e0fe
1 changed files with 32 additions and 0 deletions
  1. 32 0
      pages/common/ddev.md

+ 32 - 0
pages/common/ddev.md

@@ -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}}`