-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.vars
38 lines (34 loc) · 1.5 KB
/
Makefile.vars
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
# Setup default test timeout (default: 10s).
TEST_TIMEOUT := 10s
# Setup when to push images (default: pulls [never, pulls, merges])
IMAGE_PUSH := never
# Setup the activated commit hooks (default: pre-commit commit-msg).
GITHOOKS := pre-commit commit-msg
# Setup code quality level (default: base).
CODE_QUALITY := base
# Setup codacy integration (default: enabled [enabled, disabled]).
CODACY := enabled
# Customizing codacy server (default: https://codacy.bus.zalan.do).
#CODACY_API_BASE_URL := https://api.codacy.com
# Continue after codacy shows violation (default: false / true [cdp-pipeline]).
CODACY_CONTINUE := true
# Setup required targets before testing (default: <empty>).
#TEST_DEPS := run-db run-aws
# Setup required targets before running commands (default: <empty>).
#RUN_DEPS := run-db run-aws
# Setup required aws services for testing (comma separated,default: <empty>).
#AWS_SERVICES := s3,sqs
# Custom linters applied to prepare next level (default: <empty>).
LINTERS_CUSTOM :=
# Linters swithed off to complete next level (default: <empty>).
LINTERS_DISABLED :=
# Defines a make-fragment to setup all run-targets (default: true)
run-setup = true
# Define variables for all run-targets (called with emtpy and '-env' argument)
run-vars =
# Define variables for local run-targets (called only with '-env' argument)
run-vars-local =
# Define variables for image run-targets (called with empty and '-env' argument)
run-vars-image =
# Define a make-fragment to setup aws localstack (default: true).
run-aws-setup = true