Skip to content

Commit fd5c30a

Browse files
Merge pull request #754 from microsoft/dev
fix: merging dev changes to main
2 parents 48874c9 + 824a769 commit fd5c30a

File tree

8 files changed

+1928
-21
lines changed

8 files changed

+1928
-21
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
99
"ghcr.io/jlaundry/devcontainer-features/mssql-odbc-driver:1": {
1010
"version": "18"
11-
}
11+
},
12+
"ghcr.io/devcontainers/features/node:1": {}
1213
},
1314
"customizations": {
1415
"vscode": {

azure_custom.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: conversation-knowledge-mining
2+
3+
requiredVersions:
4+
azd: ">= 1.18.0"
5+
6+
metadata:
7+
template: conversation-knowledge-mining@1.0
8+
9+
infra:
10+
provider: bicep
11+
path: infra
12+
module: main
13+
parameters: infra/main.parameters.json
14+
15+
services:
16+
api:
17+
project: ./src/api
18+
language: py
19+
host: appservice
20+
webapp:
21+
project: ./src/App
22+
language: js
23+
host: appservice
24+
25+
hooks:
26+
postprovision:
27+
windows:
28+
shell: pwsh
29+
continueOnError: false
30+
interactive: true
31+
run: |
32+
Write-Host "Web app URL: $env:WEB_APP_URL" -ForegroundColor Cyan
33+
Write-Host "`nRun the following command in bash, if sample data needs to be processed:`nbash ./infra/scripts/process_sample_data.sh" -ForegroundColor Yellow
34+
posix:
35+
shell: sh
36+
continueOnError: false
37+
interactive: true
38+
run: |
39+
echo "Web app URL: $WEB_APP_URL"
40+
echo ""
41+
echo "Run the following command in bash, if sample data needs to be processed:"
42+
echo "bash ./infra/scripts/process_sample_data.sh"

0 commit comments

Comments
 (0)