-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathazure.yaml
More file actions
37 lines (37 loc) · 918 Bytes
/
Copy pathazure.yaml
File metadata and controls
37 lines (37 loc) · 918 Bytes
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
name: aisearch-multimodal-rag-demo
metadata:
template: azd-init@1.14.0
services:
backend:
project: ./src/backend
language: py
host: appservice
hooks:
prepackage:
windows:
shell: pwsh
run: cd ../frontend ; npm install ; npm run build
interactive: false
continueOnError: false
posix:
shell: sh
run: cd ../frontend && npm install && npm run build
interactive: false
continueOnError: false
hooks:
postprovision:
windows:
shell: pwsh
run: |
./scripts/prepdocs.ps1
./scripts/setup-local-env.ps1 -Force
interactive: true
continueOnError: false
posix:
shell: sh
run: |
./scripts/prepdocs.sh
chmod +x ./scripts/setup-local-env.sh
./scripts/setup-local-env.sh --force
interactive: true
continueOnError: false