forked from amazeeio/drupal-example-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.yml
23 lines (21 loc) · 777 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
image:
file: .gitpod.Dockerfile
tasks:
- name: Drupal start
init: |
docker network create amazeeio-network
docker run --rm --user 33333:1000 -v "${PWD}":/workdir mikefarah/yq eval 'del(.services.cli.volumes_from)' -i docker-compose.yml
lando start
lando composer install
lando drush si -y --account-pass=admin --site-name='gitpod_lando' demo_umami
gp preview $(gp url $(lando info --format=json | jq -r ".[0].urls[1]" | sed -e 's#http://localhost:\(\)#\1#'))
vscode:
extensions:
- felixfbecker.php-debug
- dbaeumer.vscode-eslint
- eamodio.gitlens
- EditorConfig.EditorConfig
- esbenp.prettier-vscode
- stylelint.vscode-stylelint
- tombonnike.vscode-status-bar-format-toggle
- usernamehw.errorlens