-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzero-project.yml
More file actions
59 lines (57 loc) · 1.79 KB
/
Copy pathzero-project.yml
File metadata and controls
59 lines (57 loc) · 1.79 KB
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
56
57
58
59
# ------------------------
# IMPORTANT:
# Committing a change with this file will trigger Github actions
# to template and rewrite the repository, you will no longer see this file
# Instead your repository will be your own example project!
# ------------------------
#
# Fill in the name of your app - this becomes the deployment/namespace/svc name in kubernetes.
# Must be lowercase alphanumeric with dashes only and must be unique within the cluster.
# Using the same name as this repository is probably a good idea.
# If you absolutely must use a different name than the repository, double check that it is unique within the Playground first.
name:
shouldPushRepositories: false
modules:
templates:
files:
dir: output
source: .
parameters:
# ------------------------
# DO NOT CHANGE
# should be fixed based on the AWS account youre using
ecrRepo: onboarding
domain: onboarding.dev
# ------------------------
# App settings
containerPort: 80
# Change this to 'static' if you will be using a static frontend
frontendSubdomain: spa
# Currently supported languages are [python, nodejs, golang]
language: python
# ------------------------
# DO NOT CHANGE
# For Templating base example in different languages
conditions:
- action: ignoreFile
matchField: language
whenValue: "python"
data:
- app.js
- package.json
- main.go
- action: ignoreFile
matchField: language
whenValue: "nodejs"
data:
- requirements.txt
- main.py
- main.go
- action: ignoreFile
matchField: language
whenValue: "golang"
data:
- requirements.txt
- main.py
- app.js
- package.json