-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitpod.yml
49 lines (45 loc) · 1.16 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
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
tasks:
- init: |
npm install
npm run prepare-charite
command: npm start
- name: Backend
before: |
dotnet tool install --global dotnet-ef
export PATH="$PATH:$HOME/.dotnet/tools/"
# cp example.env .env
command: |
mkdir /workspace/datadonation
cd /workspace/datadonation
git clone https://github.com/CovOpen/DataDonation.git .
dotnet restore
docker-compose up -d
sleep 3
dotnet run
openMode: split-right
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- port: 3333
onOpen: ignore
- port: 5000
onOpen: ignore
- port: 5001
onOpen: ignore
image:
file: .gitpod.Dockerfile
vscode:
extensions:
- ms-azuretools.vscode-docker
- esbenp.prettier-vscode
- k--kato.docomment
- https://github.com/OmniSharp/omnisharp-vscode/releases/download/v1.23.12/csharp-1.23.12.vsix
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: false
addComment: false
addBadge: true