-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcopier.yaml
51 lines (41 loc) · 1.43 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
_subdirectory: template_content
use_deprecated_template:
type: bool
help: |
WARNING: This template has been deprecated. Beaker for Algorand Smart Contract development is no longer supported.
Please use Algorand Python instead. The Algorand Python template can be found at https://github.com/algorandfoundation/algokit-python-template
Do you still want to proceed with using the deprecated template?
default: no
_tasks:
- '"{{ python_path if python_path else _copier_python }}" post_init.py {{ use_deprecated_template }} {{ use_workspace }}'
# Auto determined by algokit-cli from v1.11.3 to allow execution of python script
# in binary mode.
python_path:
type: str
help: Path to the sys.executable.
when: false
# 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