-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathazure.yaml
50 lines (46 loc) · 1.11 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
name: aoai-proxy
services:
proxy:
project: ./src/AzureAIProxy
language: csharp
host: containerapp
docker:
path: ../Dockerfile.proxy
context: ../
platform: amd64
playground:
project: ./src/playground
language: ts
host: staticwebapp
dist: dist
admin:
project: ./src/AzureAIProxy.Management
language: csharp
host: containerapp
hooks:
predeploy:
shell: sh
continueOnError: false
interactive: false
run: ../../infra/scripts/setup-app-redirect-uris.sh
docker:
path: ../Dockerfile.management
context: ../
platform: amd64
hooks:
preup:
shell: sh
continueOnError: false
interactive: false
run: ./infra/scripts/preup.sh
preprovision:
shell: sh
continueOnError: false
interactive: false
run: ./infra/scripts/setup-app-registration.sh
postdown:
shell: sh
continueOnError: false
interactive: false
run: ./infra/scripts/cleanup-app-registration.sh