forked from lando/lando
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.lando.yml
77 lines (77 loc) · 1.62 KB
/
.lando.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: lando
env_file:
- lando.env
excludes:
- node_modules
proxy:
api:
- api.lndo.site:8011
cli:
- blog.lndo.site:8007
- docs.lndo.site:8008
- events.lndo.site:8006
- site.lndo.site:8009
metrics:
- metrics.lndo.site:8010
services:
cli:
type: node:10
build:
- yarn install
scanner: false
overrides:
environment:
LANDO_API: https://api.lndo.site
ports:
- '8006:8006'
- '8007:8007'
- '8008:8008'
- '8009:8009'
api:
type: node:10
command: yarn run dev:api
overrides:
environment:
LANDO_API_PORT: 8011
port: 8011
metrics:
type: node:10
command: yarn run dev:metrics
overrides:
environment:
LANDO_METRICS_PORT: 8010
port: 8010
platform:
type: php:7.3
via: cli
build:
- mkdir -p /var/www/.platformsh/bin
- curl -fsSL -o /var/www/.platformsh/bin/platform https://github.com/platformsh/platformsh-cli/releases/download/v3.40.4/platform.phar
- chmod ug+x /var/www/.platformsh/bin/platform
tooling:
blog:
service: cli
cmd: yarn dev:blog
description: Launch the blog
docs:
service: cli
cmd: yarn dev:docs
description: Launch the documentation site
events:
service: cli
cmd: yarn dev:events
description: Launch the events listing
node:
service: cli
platform:
service: platform
description: Run Platform CLI commands
cmd: /var/www/.platformsh/bin/platform
site:
service: cli
cmd: yarn dev:site
description: Launch the marketing site
vuepress:
service: cli
yarn:
service: cli