-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcopier.yaml
84 lines (68 loc) · 1.93 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
_subdirectory: template_content
# questions
# project_name should never get prompted, AlgoKit should always pass it by convention
project_name:
type: str
help: Name for this project.
placeholder: "algorand-app"
author_name:
type: str
help: Package author name
placeholder: "Your Name"
author_email:
type: str
help: Package author email
placeholder: "[email protected]"
ide_vscode:
type: bool
help: Do you want to add VSCode configuration?
default: yes
python_linter:
type: str
help: Do you want to use a Python linter?
choices:
Ruff: "ruff"
Flake8: "flake8"
No, thank you: "null"
default: "ruff"
use_python_black:
type: bool
help: Do you want to use a Python formatter (via Black)?
default: yes
use_python_mypy:
type: bool
help: Do you want to use a Python type checker (via mypy)?
default: yes
use_python_pytest:
type: bool
help: Do you want to include unit tests (via pytest)?
default: yes
use_python_pip_audit:
type: bool
help: Do you want to include Python dependency vulnerability scanning (via pip-audit)?
default: yes
# The following should never get prompted; algokit should always pass these values through by convention
algod_token:
type: str
help: Default Algod Token
default: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
algod_server:
type: str
help: Default Algod server
default: "http://localhost"
algod_port:
type: int
help: Default Algod port
default: 4001
indexer_token:
type: str
help: Default Indexer token
default: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
indexer_server:
type: str
help: Default Indexer server
default: "http://localhost"
indexer_port:
type: int
help: Default Indexer port
default: 8980