-
Notifications
You must be signed in to change notification settings - Fork 16
/
azure.yaml
27 lines (25 loc) · 819 Bytes
/
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
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json
# To learn more about the azure.yaml file, visit https://learn.microsoft.com/en-us/azure/developer/azure-developer-cli/azd-schema
name: fake-survey-generator
services:
api:
language: csharp
project: ./src/server/FakeSurveyGenerator.Api
host: containerapp
docker:
path: ./Dockerfile
context: ../../../
image: fake-survey-generator/fake-survey-generator-api
tag: ${API_VERSION}
ui:
language: ts
project: ./src/client/ui
host: containerapp
dist: dist
docker:
path: ./Dockerfile
context: ../../../
image: fake-survey-generator/fake-survey-generator-ui
tag: ${UI_VERSION}
buildArgs:
- "VITE_APP_VERSION"