-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathazure.yaml
34 lines (33 loc) · 1 KB
/
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
33
34
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
name: sk-agentic-callcenter
services:
chat:
project: src/chat
host: containerapp
language: python
docker:
path: chat.dockerfile
remoteBuild: true
agents:
project: src/agents
host: containerapp
language: python
docker:
path: agents.dockerfile
remoteBuild: true
hooks:
postprovision:
shell: pwsh
run: |
python -m venv .venv
./.venv/Scripts/Activate.ps1
pip install uv
interactive: true
continueOnError: false
# postdeploy:
# shell: pwsh
# run: |
# cd src/agents && ../../.venv/scripts/python -m pip install -r requirements.txt
# cd ../ui && ../../.venv/scripts/python -m pip install -r requirements.txt
# interactive: true
# continueOnError: false