-
Notifications
You must be signed in to change notification settings - Fork 11
/
azure.yaml
32 lines (31 loc) · 973 Bytes
/
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
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
name: gen-ai-bot-in-a-box
services:
genai-bot-app-frontend:
project: src/webchat
host: appservice
language: js
genai-bot-app-backend:
project: src/dotnet
host: appservice
language: dotnet
# genai-bot-app-backend:
# project: src/node
# host: appservice
# language: js
# genai-bot-app-backend:
# project: src/python
# host: appservice
# language: python
hooks:
postprovision:
windows:
shell: pwsh
run: ./scripts/setupSso.ps1;./scripts/setupWebchat.ps1;./scripts/createAssistant.ps1;
interactive: false
continueOnError: false
posix:
shell: sh
run: ./scripts/setupSso.sh;./scripts/setupWebchat.sh;./scripts/createAssistant.sh;
interactive: false
continueOnError: false