-
Notifications
You must be signed in to change notification settings - Fork 3
/
cookiecutter.json
41 lines (38 loc) · 1.03 KB
/
cookiecutter.json
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
{
"full_name": "Jonas Pammer",
"email": "opensource@jonaspammer.at",
"code_of_conduct_enforcement_contact_email": "opensource@jonaspammer.at",
"github_username": "JonasPammer",
"open_source_license": [
"MIT",
"Unlicense",
"BSL-1.0",
"Apache-2.0",
"MPL-2.0",
"LGPL-3.0",
"GPL-3.0",
"AGPL-3.0",
"None"
],
"galaxy_name": "jonaspammer",
"min_ansible_version": "2.13",
"allow_duplicates": "no",
"ansible_user_needs_to_become": true,
"use_renovate": false,
"role_name": null,
"project_slug": "ansible-role-{{ cookiecutter.role_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_purpose": null,
"__prompts__": {
"open_source_license": {
"MIT": "MIT License",
"Unlicense": "The Unlicense",
"BSL-1.0": "Boost Software License 1.0",
"Apache-2.0": "Apache License 2.0",
"MPL-2.0": "Mozilla Public License 2.0",
"LGPL-3.0": "GNU LGPLv3",
"GPL-3.0": "GNU GPLv3",
"AGPL-3.0": "GNU APGLv3",
"None": "Not open source"
}
}
}