-
Notifications
You must be signed in to change notification settings - Fork 347
/
azure.yaml
50 lines (45 loc) · 1.04 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
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
name: azure-openai-rag-workshop
metadata:
template: azure-openai-rag-workshop@1.0.0
services:
frontend:
project: ./src/frontend
dist: dist
language: ts
host: staticwebapp
hooks:
predeploy:
windows:
shell: pwsh
run: Export-ModuleMember -Variable BACKEND_API_URI && npm run build
posix:
shell: sh
run: export BACKEND_API_URI && npm run build
backend:
project: ./src/backend
language: ts
host: containerapp
docker:
context: ../..
ingestion:
project: ./src/ingestion
language: ts
host: containerapp
docker:
context: ../..
hooks:
postprovision:
windows:
shell: pwsh
run: azd env get-values > .env
posix:
shell: sh
run: azd env get-values > .env
postup:
windows:
shell: pwsh
run: ./scripts/ingest-data.ps1
posix:
shell: sh
run: ./scripts/ingest-data.sh