-
Notifications
You must be signed in to change notification settings - Fork 10
/
cookiecutter.json
16 lines (16 loc) · 995 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"CONTRIBUTORS": [true, false],
"RELEASE": [true, false],
"WORK": [true, false],
"MAINTAIN": [true, false],
"ROADMAP": [true, false],
"template": ["{{ 'Tier 0 (./tier0)' if not cookiecutter.CONTRIBUTORS else 'Tier 1 (./tier1)' if not cookiecutter.RELEASE else 'Tier 1 (./tier1)' if not cookiecutter.WORK else 'Tier 2 (./tier2)' if not cookiecutter.MAINTAIN else 'Tier 3 (./tier3)' if not cookiecutter.ROADMAP else 'Tier 4 (./tier4)'}}"],
"__prompts__": {
"CONTRIBUTORS": "Does your project have more than one contributor?",
"RELEASE": "Do you plan on cutting more than one release?",
"WORK": "Do you plan on having other individuals/teams outside the agency work with you?",
"MAINTAIN": "Do you plan on having other individuals/teams outside the agency maintain the project with you?",
"ROADMAP": "Do you plan on having other individuals/teams outside the agency plan the development roadmap with you?",
"template": "We suggest using this template:"
}
}