-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathazure_custom.yaml
More file actions
42 lines (37 loc) · 1.01 KB
/
azure_custom.yaml
File metadata and controls
42 lines (37 loc) · 1.01 KB
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
name: conversation-knowledge-mining
requiredVersions:
azd: ">= 1.18.0"
metadata:
template: conversation-knowledge-mining@1.0
infra:
provider: bicep
path: infra
module: main
parameters: infra/main.parameters.json
services:
api:
project: ./src/api
language: py
host: appservice
webapp:
project: ./src/App
language: js
host: appservice
hooks:
postprovision:
windows:
shell: pwsh
continueOnError: false
interactive: true
run: |
Write-Host "Web app URL: $env:WEB_APP_URL" -ForegroundColor Cyan
Write-Host "`nRun the following command in bash, if sample data needs to be processed:`nbash ./infra/scripts/process_sample_data.sh" -ForegroundColor Yellow
posix:
shell: sh
continueOnError: false
interactive: true
run: |
echo "Web app URL: $WEB_APP_URL"
echo ""
echo "Run the following command in bash, if sample data needs to be processed:"
echo "bash ./infra/scripts/process_sample_data.sh"