forked from OpenMage/magento-lts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
25 lines (23 loc) · 863 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
# List the start-up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
tasks:
- init: echo 'init script' # runs during prebuild
command: echo 'start script'
- name: Install OpenMage
init: |
cd dev/gitpod
echo "# Generated by .gitpod.yml - edit as needed" > .env
echo "HOST_NAME=8000-$GITPOD_WORKSPACE_ID.$GITPOD_WORKSPACE_CLUSTER_HOST" >> .env
echo "HOST_PORT=8000" >> .env
echo "BASE_URL=https://8000-$GITPOD_WORKSPACE_ID.$GITPOD_WORKSPACE_CLUSTER_HOST/" >> .env
command: bash dev/gitpod/install.sh
openMode: tab-after
- name: prepare git
init: git config core.fileMode false
vscode:
extensions:
- bmewburn.vscode-intelephense-client
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- port: 8000
visibility: public
onOpen: open-preview