-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitpod.yml
53 lines (49 loc) · 1007 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
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
image:
file: .gitpod/Dockerfile
tasks:
- init: |
.gitpod/scripts/ddev-download-images.sh
.gitpod/scripts/ddev-setup.sh
.gitpod/scripts/drupal-setup.sh
.gitpod/scripts/nuxt-setup.sh
command: |
.gitpod/scripts/ddev-setup.sh
cd nuxt && yarn dev
ports:
# DDev - direct-bind https port
- port: 2222
onOpen: ignore
# Nuxt - Web
- port: 3000
onOpen: open-preview
visibility: public
# DDev - local db clients
- port: 3306
onOpen: ignore
# DDev - MailHog
- port: 8025
onOpen: ignore
# DDev - phpMyAdmin
- port: 8036
onOpen: ignore
# DDev - Web
- port: 8080
onOpen: ignore
visibility: public
# DDev - xdebug port
- port: 9000
onOpen: ignore
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
addComment: false
addBadge: true
addLabel: true
vscode:
extensions:
- octref.vetur
- editorconfig.editorconfig