Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions azure_custom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
environment:
name: conversation-knowledge-mining
location: eastus

name: conversation-knowledge-mining

metadata:
template: conversation-knowledge-mining@1.0

requiredVersions:
azd: '>= 1.18.0'

parameters:
solutionName:
type: string
default: ckmapp
secondaryLocation:
type: string
default: eastus2
baseUrl:
type: string
default: 'https://github.com/microsoft/Conversation-Knowledge-Mining-Solution-Accelerator'

services:
webapp:
project: ./src
language: py
host: appservice
dist: ./dist
hooks:
prepackage:
windows:
shell: pwsh
run: ../infra/scripts/package_webapp.ps1
interactive: true
continueOnError: false
posix:
shell: sh
run: bash ../infra/scripts/package_webapp.sh
interactive: true
continueOnError: false

deployment:
mode: Incremental
template: ./infra/main.bicep # Path to the main.bicep file inside the 'deployment' folder
parameters:
solutionName: ${parameters.solutionName}
secondaryLocation: ${parameters.secondaryLocation}
baseUrl: ${parameters.baseUrl}
Loading