Skip to content

Commit 5733ff3

Browse files
authored
Adjust README for use with DDEV (#1281)
1 parent 6d8a78c commit 5733ff3

File tree

1 file changed

+42
-21
lines changed

1 file changed

+42
-21
lines changed

README.md

+42-21
Original file line numberDiff line numberDiff line change
@@ -11,35 +11,56 @@ Drupal project based on `drupal/recommended-project`. The project comprises of a
1111
Repository links for custom modules and themes:
1212

1313
- https://github.com/dof-dss/nidirect-site-modules
14-
- https://github.com/dof-dss/nidirect-d8-mig-mods
15-
- https://github.com/dof-dss/nidirect-d8-test-install-profile
1614
- https://github.com/dof-dss/nicsdru_origins_modules
1715
- https://github.com/dof-dss/nicsdru_origins_theme
1816
- https://github.com/dof-dss/nicsdru_nidirect_theme
1917

20-
## Updating Core
21-
22-
Follow the instructions at: https://www.drupal.org/docs/updating-drupal/updating-drupal-core-via-composer
23-
2418
## Getting started
2519

26-
## Prerequisites
20+
### Pre-requisites
21+
22+
1. Rancher Desktop [https://docs.rancherdesktop.io/(https://docs.rancherdesktop.io/)]
23+
- Install notes: https://ddev.readthedocs.io/en/stable/users/install/docker-installation/#rancher-desktop
24+
- Rancher is an cross-platform Open Source container management tool, as an alternative to Docker Desktop.
25+
- **Make sure you turn off Kubernetes support or it can block port 80 and 443 causing DDEV to fail to start.**
26+
2. DDEV [https://ddev.com/get-started/](https://ddev.com/get-started/)
27+
- The project uses a Mutagen (a file sync agent) performance profile for all platforms. It installs itself into each project, as needed.
28+
3. Platform CLI tool and access [https://docs.platform.sh/development/cli.html](https://docs.platform.sh/development/cli.html)
29+
- You will need to request access to the projects you work on.
30+
- Once granted, log in with `platform login -f` to renew any local SSH certs.
31+
4. Environment variables
32+
- You need to populate the sensitive values in `.ddev/.env` as part of the build process.
33+
- **Ask the team for how best to obtain these.**
34+
5. Platform SH API Token
35+
- You will need to generate an API Token for DDev. This can be found on platform.sh -> My Profile -> API Tokens
36+
- Assign the token to the PLATFORMSH_CLI_TOKEN key of your .env file.
37+
6. Install DBeaver or SequelAce (if you haven't done so already)
38+
- DBeaver (MacOS for Apple Silicon) https://dbeaver.io/download/
39+
- Sequel Ace https://sequel-ace.com
40+
41+
### Next installation/import steps
42+
43+
- Clone this repo and change directory into it.
44+
- `mv <path-to-dot-env-file> .ddev/.env`
45+
- `ddev start`. This will run composer inside the container for you, avoiding host-level inconsistencies.
46+
- Verify env vars have taken effect with: `ddev exec "env | sort""`
47+
- Run `ddev pull nidirect` which will import the database and run config import.
48+
- To inspect the databases you can use either `ddev dbeaver` or `ddev sequelace` depending on the DBMS you have installed.
49+
- Copy your `~/.composer/auth.json` to `.ddev/homeadditions/.composer` to allow git operations inside the container using `ddev composer`
50+
51+
## Troubleshooting
52+
53+
- Can't connect to the database
54+
- Ensure your .env file values are valid and in effect. See https://ddev.readthedocs.io/en/stable/users/extend/customization-extendibility/#environment-variables-for-containers-and-services for details.
55+
- Ensure your databases have fully imported.
56+
- Port 443 or 80 is blocked.
57+
- Make sure Rancher Desktop's Kubernetes option is disabled.
58+
- Run `lando poweroff` to ensure any legacy applications are not listening on the ports.
59+
- https://ddev.readthedocs.io/en/stable/users/usage/troubleshooting/#web-server-ports-already-occupied
2760

28-
- Access to the hosting platform (for access to database resources)
29-
- GitHub account with relevant permissions
30-
- Platform.sh CLI tool: https://docs.platform.sh/administration/cli.html#1-install
31-
32-
1. Fetch a recent database via `platform db:dump -z -e main`
33-
2. Lando start
34-
3. Fetch/copy env var values into your `.env` file: `platform ssh -e main 'env | sort'`
35-
4. Rebuild the project for the new values to take effect: `lando rebuild -y`
36-
5. Import the db: `lando db-import <filename>.sql.gz`
37-
6. Rebuild the app container and import local config split settings: `lando drush cr && lando cim -y`
38-
39-
## Drupal settings files
61+
## Updating Core
4062

41-
There is a general settings file (`sites/default/settings.php`) that detects and loads more specific settings, depending
42-
on the environment the application is running in.
63+
Follow the instructions at: https://www.drupal.org/docs/updating-drupal/updating-drupal-core-via-composer
4364

4465
## Code workflow
4566

0 commit comments

Comments
 (0)