-
-
Notifications
You must be signed in to change notification settings - Fork 569
/
.gitpod.yml
51 lines (48 loc) · 1 KB
/
.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
gitConfig:
core.autocrlf: input
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: false
addComment: false
addBadge: true
ports:
- name: AzuraCast HTTP
port: 80
onOpen: ignore
- name: AzuraCast HTTPS
port: 443
onOpen: open-browser
visibility: public
- name: SFTP
port: 2022
onOpen: ignore
- name: MariaDB
port: 3306
onOpen: ignore
- name: Redis
port: 6379
onOpen: ignore
- name: Broadcast Ports
port: 8000-8999
onOpen: ignore
tasks:
- name: Backend
init: |
cp dev.env .env
cp azuracast.dev.env azuracast.env
cp docker-compose.sample.yml docker-compose.yml
cp docker-compose.dev.yml docker-compose.override.yml
docker-compose build
command: |
bash util/setup_gitpod.sh
bash docker.sh install-dev
gp sync-done install
make bash
- name: Frontend
command: |
gp sync-await install
make frontend-bash