Skip to content

Commit 141fe46

Browse files
committed
fix: small fixes
1 parent 104f124 commit 141fe46

File tree

7 files changed

+6
-4
lines changed

7 files changed

+6
-4
lines changed

template_content/.algokit/generators/create_contract/copier.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ contract_name:
1010
include_tests:
1111
type: bool
1212
help: Should we include testing files?
13-
default: True
13+
default: 'yes'
1414

1515
_templates_suffix: ".j2"

template_content/.algokit/generators/create_contract/smart_contracts/{% raw %}{{ contract_name }}{% endraw %}/deploy-config.ts.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export async function deploy() {
1919
await algorand.send.payment({
2020
amount: (1).algo(),
2121
sender: deployer.addr,
22-
receiver: app.appAddress,
22+
receiver: appClient.appAddress,
2323
})
2424
}
2525

template_content/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ coverage
5757
*.received.*
5858

5959
# AlgoKit
60-
debug_traces/
60+
debug-traces/
6161
.algokit/static-analysis/ # Replace with .algokit/static-analysis/tealer/ to enable snapshot checks in CI
6262
.algokit/sources
63+
.algokit/static-analysis
6364

template_content/{% if use_prettier %}.prettierignore{% endif %}

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ coverage
1010
**/generated/types.ts
1111
# don't format ide files
1212
.idea
13+
smart_contracts/artifacts

tests/test_templates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def run_init(
9393
"--no-ide",
9494
"--no-git",
9595
"--no-workspace",
96-
"--no-bootstrap",
96+
# "--bootstrap" - not needed - the `Y` input below will trigger this
9797
]
9898
answers = {**DEFAULT_PARAMETERS, **(answers or {})}
9999

0 commit comments

Comments
 (0)