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
- 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.
0 commit comments