Last active
February 23, 2019 18:15
-
-
Save DanLaufer/627fe993ec98100181edf2ea67c5b4cd to your computer and use it in GitHub Desktop.
Drupal 8 - Cool Drupal Console commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
drupal generate:module | |
drupal generate:entity:content | |
drupal generate:entity:bundle | |
// create a module without having to answer questions | |
drupal generate:module \ | |
--module="modulename" \ | |
--machine-name="modulename" \ | |
--module-path="/modules/custom" \ | |
--description="My Awesome Module" \ | |
--core="8.x" \ | |
--package="Custom" \ | |
--module-file \ | |
--composer \ | |
--test \ | |
--twigtemplate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment