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: docs/anatomy_of_a_silta_project.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,11 +158,10 @@ This file is actually not part of the repository, but gets mounted into the runn
158
158
It loads the database credential and additional Silta-specific configuration. You don't need to modify it (you can't), but you need to make sure
159
159
that it gets included from your settings.php.
160
160
161
-
### Lando configuration file
162
-
This file is not actually needed to deploy a project to Silta, but it configures the project for
163
-
usage in local developemnt environments with Lando. Silta doesn't specify how you should run your code locally, but Lando and Silta have compatible of working.
161
+
### DDEV configuration file
162
+
This file is not required to deploy a project to Silta, but it configures the project for use in local development environments with DDEV. Silta does not specify how you should run your code locally, but DDEV and Silta are compatible ways of working.
164
163
165
-
There is no plan to consolidate Silta and Lando, as they have very different requirements (for example Lando mounts the codebase as a volume, whereas Silta copies it into dedicated Docker images).
164
+
There is no plan to consolidate Silta and DDEV, as they have very different requirements (for example, DDEV mounts the codebase as a volume, whereas Silta copies it into dedicated Docker images).
166
165
167
166
### phpcs.xml
168
167
This file is also not required for Silta, but we use phpcs for validation by default.
Copy file name to clipboardExpand all lines: docs/creating_a_new_project.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,10 @@ title: Creating a new project
6
6
7
7
- Make a copy of Wunder's [drupal-project](https://github.com/wunderio/drupal-project), and push it as a new repository within the wunderio Github organisation.
8
8
- Setup your project:
9
-
- Run your project locally with [lando](https://docs.devwithlando.io): `lando start` (follow local environment setup instructions at https://github.com/wunderio/drupal-project#setup)
10
-
- Install composer dependencies with `lando composer install` and commit composer.lock and generated files in the `web` folder. If Drupal adds additional database credentials in settings.php, these should not be committed and can be discarded.
9
+
- Run your project locally with [DDEV](https://docs.ddev.com/en/stable/): `ddev start` (follow local environment setup instructions at https://github.com/wunderio/drupal-project#setup)
10
+
- Install composer dependencies with `ddev composer install` and commit composer.lock and generated files in the `web` folder. If Drupal adds additional database credentials in settings.php, these should not be committed and can be discarded.
11
11
- Install javascript dependencies with `npm install` and commit the package-lock.json file.
12
-
- Install Drupal with `lando drush site-install` and export the default configuration with `lando drush config-export`.
12
+
- Install Drupal with `ddev drush site-install`/ `ddev drush si`and export the default configuration with `ddev drush config-export` / `ddev drush cex`.
13
13
- Log in to CircleCI with your Github credentials, select "wunderio" and [enable your project](https://circleci.com/add-projects/gh/wunderio).
14
14
- Watch your project build, the CircleCI output has a link to your deployed environment.
0 commit comments