-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopier.yaml
89 lines (75 loc) · 2.08 KB
/
copier.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
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
80
81
82
83
84
85
86
87
88
89
# Configure jinja2 defaults to make syntax highlighters lives easier
_templates_suffix: .jinja
# Other Copier configurations
_min_copier_version: '9'
_exclude:
- /.git
- /.github
- /.gitmodules
- /**.pyc
- /**.pyo
- /copier.yml
- /copier.yaml
- /COPYING
- /vendor
# Questions for the user
odoo_version:
help: On which odoo version is it based?
type: float
default: 18.0
choices:
- 8.0
- 9.0
- 10.0
- 11.0
- 12.0
- 13.0
- 14.0
- 15.0
- 16.0
- 17.0
- 18.0
odoo_admin_password:
secret: true
default: example-admin-password
type: str
help: >-
💡 To auto-generate strong passwords, see https://ddg.gg/?q=password+64+strong
⚠️ This password is critical for security, especially if you set odoo_listdb to
true, so keep it safe.
What will be your odoo admin password?
project_author:
type: str
help: >-
Tell me who you are.
If private modules do not include this author, pylint will warn you.
default: Devtoolschool
db_user:
type: str
help: >-
What's database username?
Do not use dots or spaces in the name; just "A-Za-z0-9-_" please.
default: odoo
db_passwd:
type: str
help: >-
What's database password?
Do not use dots or spaces in the name; just "A-Za-z0-9-_" please.
default: odoo
project_license:
help: >-
It's important to use a good license for your project.
In https://choosealicense.com/ you can read details about most common FOSS ones. In
https://www.odoo.com/documentation/user/14.0/legal/licenses/licenses.html you can
find other propietary licenses we support in this scaffolding. Make a wise choice!
So, what's your project's license?
default: BSL-1.0
choices:
No license: no_license
Apache License 2.0: Apache-2.0
Boost Software License 1.0: BSL-1.0
GNU Affero General Public License (AGPL) 3.0 or later: AGPL-3.0-or-later
GNU Library or "Lesser" General Public License (LGPL) 3.0 or later: LGPL-3.0-or-later
MIT license: MIT
Odoo Enterprise Edition License v1.0: OEEL-1.0
Odoo Proprietary License v1.0: OPL-1.0