-
Notifications
You must be signed in to change notification settings - Fork 0
/
copier.yml
79 lines (69 loc) · 1.51 KB
/
copier.yml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
_exclude:
- copier-answers.yml
- ci_requirements.txt
- test_load_dagbag.py
- copier.yaml
- copier.yml
- .git
- .github/workflows/main.yml
- "*.py[co]"
- __pycache__
- .DS_Store
ci_provider:
type: str
choices:
- github
- gitlab
when: "{{setup_ci_cd}}"
default: github
help: CI/CD provider
dags_path:
type: str
when: "{{airflow_dags_confirm_path}}"
default: "{{tentative_dags_path}}"
help: Airflow DAGs path
yml_dags_path:
type: str
when: "{{yml_dags_confirm_path}}"
default: "{{tentative_yml_dags_path}}"
help: Airflow YML Dags path
use_dbt_checkpoint:
type: bool
default: false
when: "{{setup_precommit}}"
help: use dbt-checkpoint?
use_sqlfluff:
type: bool
default: false
when: "{{setup_precommit}}"
help: use Sqlfluff?
use_yamllint:
type: bool
default: false
when: "{{setup_precommit}}"
help: use Yamllint?
add_dbtcoves_config_and_templates:
type: bool
default: false
when: "{{not setup_dbt_coves and setup_dbt_project}}"
help: Add dbt-coves config and templates?
setup_dbtcoves_config:
type: bool
default: true
when: "{{setup_dbt_coves}}"
help: Setup dbt-coves config?
setup_dbtcoves_templates:
type: bool
default: true
when: "{{setup_dbt_coves}}"
help: Setup dbt-coves templates?
dbt_adapter:
type: str
choices:
- snowflake
- bigquery
- redshift
- databricks
help: What dbt adapter are you using?
when: "{{not dbt_adapter and (setup_dbt_profile or setup_ci_cd or setup_sqlfluff)}}"
default: snowflake