-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcopier.yml
57 lines (49 loc) · 1.12 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
# Configure jinja2 defaults to make syntax highlighters happy
_templates_suffix: .jinja
_subdirectory: src
_envops:
block_end_string: "%}"
block_start_string: "{%"
comment_end_string: "#}"
comment_start_string: "{#"
keep_trailing_newline: true
variable_end_string: "}}"
variable_start_string: "{{"
_tasks:
- rm -f .eslintrc.yml
project_name:
type: str
help: Human readable project name (without Odoo).
project_trigram:
type: str
help: A very short name for the project (3 to 5 lowercase characters)
odoo_series:
type: str
default: "18.0"
choices:
- "16.0"
- "17.0"
- "18.0"
odoo_enterprise:
type: bool
default: False
python_version:
type: str
default: "3.12"
choices:
- "3.10"
- "3.11"
- "3.12"
kwkhtmltopdf_test_service:
type: bool
default: false
help: "Enable the kwkhtmltopdf service in CI tests."
deploy_branch:
type: bool
default: true
help: Generate GitLab CI deployment triggers to a deploy branch.
review_environments:
type: bool
default: true
help: Generate GitLab CI review environment (image and deploy triggers).
when: "{{ deploy_branch }}"