-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitpod.yml
45 lines (36 loc) · 941 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
---
# yaml-language-server: $schema=https://gitpod.io/schemas/gitpod-schema.json
image:
file: .gitpod.Dockerfile
tasks:
- name: Run dev (docs)
before: cd docs
init: npm ci
command: npm run start
- name: Build Release (docs)
before: cd docs
init: npm ci
command: npm run build
- name: Build (frontend)
init: dotnet build src/Fetcharr.sln
- name: Run (frontend)
command: dotnet run --project src/Web/src/Fetcharr.Web.csproj
- name: Watch (frontend)
command: dotnet watch --project src/Web/src/Fetcharr.Web.csproj
ports:
- name: Frontend / API
port: 5656
protocol: http
onOpen: notify
- name: Documentation
port: 3000
protocol: http
onOpen: notify
vscode:
extensions:
- ms-dotnettools.vscode-dotnet-runtime
- muhammad-sammy.csharp
- editorconfig.editorconfig
- bradlc.vscode-tailwindcss
- redhat.vscode-yaml
- esbenp.prettier-vscode