-
Notifications
You must be signed in to change notification settings - Fork 5
/
azure.yaml
55 lines (54 loc) · 1.65 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
51
52
53
54
55
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
# This is an example starter azure.yaml file containing several example services in comments below.
# Make changes as needed to describe your application setup.
# To learn more about the azure.yaml file, visit https://learn.microsoft.com/en-us/azure/developer/azure-developer-cli/azd-schema
name: moneta
services:
frontend:
language: python
project: src/frontend
host: containerapp
docker:
path: ./Dockerfile
remoteBuild: true
backend:
language: python
project: src/backend
host: containerapp
docker:
path: ./Dockerfile
remoteBuild: true
hooks:
preprovision:
# windows:
# shell: pwsh
# run: ./scripts/auth_init.ps1
# interactive: true
# continueOnError: false
posix:
shell: sh
run: ./scripts/preprovision.sh
interactive: true
continueOnError: false
postprovision:
# windows:
# shell: pwsh
# run: ./scripts/auth_update.ps1;
# interactive: true
# continueOnError: false
posix:
shell: sh
run: ./scripts/postprovision.sh
interactive: true
continueOnError: false
postdeploy:
posix:
shell: sh
run: ./scripts/load_python_env.sh && ./scripts/postdeploy.sh;
interactive: true
continueOnError: false
windows:
shell: pwsh
run: ./scripts/load_python_env.ps1 && ./scripts/postdeploy.ps1;
interactive: true
continueOnError: false