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
{{ message }}
This repository was archived by the owner on Aug 4, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: emulsify-drupal/emulsify-drupal/advanced-usage/lando-environments.md
+15-14Lines changed: 15 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -23,17 +23,7 @@ description: Use Lando to make your development environment portable
23
23
```yaml
24
24
recipe: drupal9
25
25
```
26
-
2. Emulsify needs port 6006 to be available for StorybookJS and port 32778 to be available for
27
-
[Hot Reload](./hot-reload-drupal.md).
28
-
```yaml
29
-
services:
30
-
appserver:
31
-
overrides:
32
-
ports:
33
-
- 6006:6006
34
-
- 32778:32778
35
-
```
36
-
3. Both NodeJS and NPM needs to be available at a project level. Using npm the emulsify cli command can also be installed. This and npm can both be made available via Lando tooling.
26
+
2. Both NodeJS and NPM needs to be available at a project level. Using npm the emulsify cli command can also be installed. This and npm can both be made available via Lando tooling.
37
27
```yaml
38
28
services:
39
29
appserver:
@@ -54,6 +44,18 @@ description: Use Lando to make your development environment portable
54
44
emulsify:
55
45
service: appserver
56
46
```
47
+
3. Emulsify needs port 6006 to be available for StorybookJS and port 32778 to be available for [Hot Reload](./hot-reload-drupal.md).
48
+
49
+
By adding proxy address for browsersync.example.lndo.site and storybook.example.lndo.site that point to the ports needed, those applications can be accessible by navigating to the addresses without the ports from outside the container services.
50
+
51
+
Since we are using proxies instead of forwarding ports directly, multiple projects can make use of these ports simultaneously.
0 commit comments