Skip to content

Commit 0aa2810

Browse files
testing
1 parent 3360f4f commit 0aa2810

20 files changed

+50
-1755
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ static
88
scripts/config.json
99
venv
1010
myenv
11-
frontend/coverage
11+
frontend/coverage
12+
scriptsenv/

azure.yaml

Lines changed: 26 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,27 @@
1-
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
2-
3-
name: sample-app-aoai-chatgpt
1+
environment:
2+
name: conversation-knowledge-mining
3+
location: eastus
4+
name: conversation-knowledge-mining
45
metadata:
5-
6-
services:
7-
backend:
8-
project: .
9-
language: py
10-
host: appservice
11-
hooks:
12-
prepackage:
13-
windows:
14-
shell: pwsh
15-
run: cd ./frontend;npm install;npm run build
16-
interactive: true
17-
continueOnError: false
18-
posix:
19-
shell: sh
20-
run: cd ./frontend;npm install;npm run build
21-
interactive: true
22-
continueOnError: false
23-
hooks:
24-
preprovision:
25-
windows:
26-
shell: pwsh
27-
run: ./scripts/auth_init.ps1
28-
interactive: true
29-
continueOnError: false
30-
posix:
31-
shell: sh
32-
run: ./scripts/auth_init.sh
33-
interactive: true
34-
continueOnError: false
35-
postprovision:
36-
windows:
37-
shell: pwsh
38-
run: ./scripts/auth_update.ps1;
39-
interactive: true
40-
continueOnError: false
41-
posix:
42-
shell: sh
43-
run: ./scripts/auth_update.sh;
44-
interactive: true
45-
continueOnError: false
6+
7+
8+
parameters:
9+
solutionPrefix:
10+
type: string
11+
default: bs-azdtest
12+
otherLocation:
13+
type: string
14+
default: eastus2
15+
baseUrl:
16+
type: string
17+
default: 'https://raw.githubusercontent.com/microsoft/Conversation-Knowledge-Mining-Solution-Accelerator/'
18+
19+
deployment:
20+
mode: Incremental
21+
template: ./infra/main.bicep # Path to the main.bicep file inside the 'deployment' folder
22+
parameters:
23+
solutionPrefix: ${parameters.solutionPrefix}
24+
otherLocation: ${parameters.otherLocation}
25+
baseUrl: ${parameters.baseUrl}
26+
27+

infra/abbreviations.json

Lines changed: 0 additions & 135 deletions
This file was deleted.

infra/azure.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
environment:
2+
name: BYC-Generic-Accelerator
3+
location: eastus
4+
5+
parameters:
6+
solutionPrefix:
7+
type: string
8+
default: bs-azdtest
9+
otherLocation:
10+
type: string
11+
default: eastus2
12+
baseUrl:
13+
type: string
14+
default: 'https://github.com/blessing-sanusi/BYC-Generic-Accelerator'
15+
16+
deployment:
17+
mode: Incremental
18+
template: ./infra/main.bicep # Path to the main.bicep file inside the 'deployment' folder
19+
parameters:
20+
solutionPrefix: ${parameters.solutionPrefix}
21+
otherLocation: ${parameters.otherLocation}
22+
baseUrl: ${parameters.baseUrl}

infra/core/ai/cognitiveservices.bicep

Lines changed: 0 additions & 43 deletions
This file was deleted.

infra/core/database/cosmos/cosmos-account.bicep

Lines changed: 0 additions & 33 deletions
This file was deleted.

infra/core/database/cosmos/sql/cosmos-sql-account.bicep

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)