-
Notifications
You must be signed in to change notification settings - Fork 1
/
copier.yaml
53 lines (42 loc) · 1.01 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
bot_project_name:
help: Git project name
default: bot-example
bot_display_name:
help: Bot name in messenger
default: Bot Example
bot_description:
multiline: true
help: Description for README.md. First line will be added pyproject.toml
default: TODO
add_fsm:
help: Add pybotx-fsm to project?
type: bool
default: no
add_worker:
help: Include tasks worker in `docker-compose.yml`
type: bool
default: yes
from_ccsteam:
help: Are you from CCS team?
type: bool
default: yes
bot_name_underscored:
default: "{{bot_project_name|replace('-', '_')}}"
when: false
bot_short_description:
default: "{{bot_description.split('\n')|first}}"
when: false
has_private_dependencies:
type: bool
default: no
when: false
_jinja_extensions:
- copier_templates_extensions.TemplateExtensionLoader
- extensions/context.py:ContextUpdater
_exclude:
- ".git"
- ".github"
- "LICENSE.md"
- "copier.yml"
- "extensions"
- "README.md"