Advertisement
Guest User

Untitled

a guest
Jan 19th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. commands:
  2. # Install Drupal
  3. - command: site:install
  4. options:
  5. langcode: en
  6. db-type: mysql
  7. db-host: 127.0.0.1
  8. db-name: drupal_composer
  9. db-user: root
  10. db-pass: root
  11. db-port: 3306
  12. site-name: 'Drupal 8 site'
  13. site-mail: admin@example.org
  14. account-name: admin
  15. account-mail: admin@example.org
  16. account-pass: admin
  17. no-interaction: true
  18. arguments:
  19. profile: standard
  20. - command: cache:rebuild
  21. arguments:
  22. cache: all
  23. # Install modules manually
  24. # - command: module:install
  25. # arguments:
  26. # module:
  27. # - admin_toolbar
  28. # - admin_toolbar_tools
  29. # - disqus
  30. # - pathauto
  31. # - token
  32. # - ctools
  33. # Restore Database
  34. # - command: database:restore
  35. # options:
  36. # file: ../drupal_composer.sql
  37. # Import configuration
  38. - command: config:import
  39. # Create dummy data
  40. - command: create:users
  41. - command: create:vocabularies
  42. - command: create:terms
  43. - command: create:nodes
  44. # Rebuild cahes
  45. - command: cache:rebuild
  46. arguments:
  47. cache: all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement