-
Notifications
You must be signed in to change notification settings - Fork 132
/
azure.yaml
51 lines (46 loc) · 1.09 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
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
name: azure-search-openai-javascript
metadata:
template: [email protected]
services:
webapp:
project: ./packages/webapp
dist: dist
language: ts
host: staticwebapp
hooks:
predeploy:
windows:
shell: pwsh
run: npm run build
interactive: true
continueOnError: false
posix:
shell: sh
run: export SEARCH_API_URI && npm run build
interactive: true
continueOnError: false
search:
project: ./packages/search
language: ts
host: containerapp
docker:
context: ../..
indexer:
project: ./packages/indexer
language: ts
host: containerapp
docker:
context: ../..
hooks:
postup:
windows:
shell: pwsh
run: ./scripts/index-data.ps1
interactive: true
continueOnError: false
posix:
shell: sh
run: ./scripts/index-data.sh
interactive: true
continueOnError: false