Skip to content

Commit

Permalink
chore: adjust terminology
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell committed Mar 27, 2024
1 parent e50111c commit ddb750c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

---

This full-stack template provides both a baseline React web app and a production-ready baseline for developing and deploying `Puya`, `TealScript` and `Beaker` smart contracts. It's suitable for developing and integrating with any [ARC32](https://github.com/algorandfoundation/ARCs/blob/main/ARCs/arc-0032.md) compliant Algorand smart contracts.
This full-stack template provides both a baseline React web app and a production-ready baseline for developing and deploying `Algorand Python`, `TealScript` and `Beaker` smart contracts. It's suitable for developing and integrating with any [ARC32](https://github.com/algorandfoundation/ARCs/blob/main/ARCs/arc-0032.md) compliant Algorand smart contracts.

To use this template, [install AlgoKit](https://github.com/algorandfoundation/algokit-cli#readme) and then either pass in `-t fullstack` to `algokit init` or select the relevant template interactively during `algokit init`.

Expand All @@ -25,7 +25,7 @@ This template supports a multitude of features for developing full-stack applica

And the following backend templates:

- [algokit-python-template](https://github.com/algorandfoundation/algokit-python-template) - An official starter for developing and deploying Puya smart contracts.
- [algokit-python-template](https://github.com/algorandfoundation/algokit-python-template) - An official starter for developing and deploying Algorand Python smart contracts.
- [algokit-tealscript-template](https://github.com/algorand-devrel/tealscript-algokit-template) - An official starter for developing and deploying TealScript smart contracts.
- [algokit-beaker-default-template](https://github.com/algorandfoundation/algokit-beaker-default-template) - A production-ready baseline for developing and deploying Beaker smart contracts.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: 0.5.1-21-g58a1755
_commit: 0.5.1-22-g30bc12c
_src_path: gh:algorandfoundation/algokit-python-template
author_email: None
author_name: None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ def build(output_dir: Path, contract_path: Path) -> Path:

build_result = subprocess.run(
[
"poetry",
"run",
"puyapy",
"algokit",
"compile",
"python",
contract_path.absolute(),
f"--out-dir={output_dir}",
"--output-arc32",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: 0.5.1-21-g58a1755
_commit: 0.5.1-22-g30bc12c
_src_path: gh:algorandfoundation/algokit-python-template
author_email: None
author_name: None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ def build(output_dir: Path, contract_path: Path) -> Path:

build_result = subprocess.run(
[
"poetry",
"run",
"puyapy",
"algokit",
"compile",
"python",
contract_path.absolute(),
f"--out-dir={output_dir}",
"--output-arc32",
Expand Down

0 comments on commit ddb750c

Please sign in to comment.