You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-5Lines changed: 18 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
-
# Drupal 10 Development
2
-
A minimal project build for Drupal 10 module development.
1
+
# Drupal 11 Development
2
+
A minimal project build for Drupal 11 module development.
3
3
4
4
## Contents
5
5
@@ -26,7 +26,14 @@ Now you are ready to install Drupal and test modules:
26
26
27
27
*`ddev install`
28
28
29
-
This command will install Drupal 10 plus the following useful modules: `devel`, `config_inspector`, `admin_toolbar`, and `admin_toolbar_tools`. You can login with `admin / admin` at https://d10.ddev.site/user.
29
+
This command will install Drupal 11 using the `standard` profile and configures the development environment with:
-**Node.js dependencies**: Installs Yarn dependencies for core development (ESLint, Prettier)
34
+
-**Prettier configuration**: Sets up `.prettierrc.json` and `.prettierignore`
35
+
36
+
You can login with `admin` / `admin` at https://d10.ddev.site/user.
30
37
31
38
#### Note on NFS:
32
39
@@ -38,7 +45,7 @@ If using NFS to speed up the container, see these steps.
38
45
39
46
### Drush
40
47
41
-
`drush 11` is installed by default and can be run with `ddev drush COMMAND`. You can use `ddev drush site:install` if you want to customize the install.
48
+
`drush 13` is installed by default and can be run with `ddev drush COMMAND`. You can use `ddev drush site:install` if you want to customize the install.
42
49
43
50
### Composer
44
51
@@ -134,7 +141,13 @@ This command is adapted from [ddev contrib](https://github.com/ddev/ddev-drupal-
134
141
135
142
**Command:**`ddev install`
136
143
137
-
Installs the default drupal site. This command will also install the node dependencies required for core development.
144
+
Performs a complete Drupal installation with development-focused configuration:
145
+
- Installs Drupal using the `standard` profile
146
+
- Sets up admin account (`admin` / `admin`)
147
+
- Enables and configures the Gin admin theme with horizontal toolbar
148
+
- Enables essential development modules (`admin_toolbar`, `admin_toolbar_tools`, `config_inspector`, `devel`, `gin_toolbar`)
149
+
- Installs Node.js dependencies (Yarn) for core development
0 commit comments