-
Notifications
You must be signed in to change notification settings - Fork 76
/
azure.yaml
81 lines (76 loc) · 1.93 KB
/
azure.yaml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
# This is an example starter azure.yaml file containing several example services in comments below.
# Make changes as needed to describe your application setup.
# To learn more about the azure.yaml file, visit https://learn.microsoft.com/en-us/azure/developer/azure-developer-cli/azd-schema
# Name of the application.
name: apicenter-portal-starter
metadata:
template: api-center-portal
workflows:
up:
steps:
- azd: provision
- azd: package --all
- azd: deploy --all
services:
staticapp-portal:
language: ts
project: ./
host: staticwebapp
dist: dist
hooks:
preup:
posix:
shell: sh
run: infra/hooks/preup.sh
continueOnError: false
interactive: true
windows:
shell: pwsh
run: infra/hooks/preup.ps1
continueOnError: false
interactive: true
preprovision:
posix:
shell: sh
run: infra/hooks/preprovision.sh
continueOnError: false
interactive: true
windows:
shell: pwsh
run: infra/hooks/preprovision.ps1
continueOnError: false
interactive: true
postprovision:
posix:
shell: sh
run: infra/hooks/postprovision.sh
continueOnError: false
interactive: true
windows:
shell: pwsh
run: infra/hooks/postprovision.ps1
continueOnError: false
interactive: true
predeploy:
posix:
shell: sh
run: infra/hooks/predeploy.sh
continueOnError: false
interactive: true
windows:
shell: pwsh
run: infra/hooks/predeploy.ps1
continueOnError: false
interactive: true
predown:
posix:
shell: sh
continueOnError: false
interactive: true
run: infra/hooks/predown.sh
windows:
shell: pwsh
continueOnError: false
interactive: true
run: infra/hooks/predown.ps1