diff --git a/README.md b/README.md index 6875cc0..4db38a1 100644 --- a/README.md +++ b/README.md @@ -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`. @@ -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. diff --git a/examples/production_python_react/projects/production_python_react-contracts/.copier-answers.yml b/examples/production_python_react/projects/production_python_react-contracts/.copier-answers.yml index 3c8fe28..f3d06e2 100644 --- a/examples/production_python_react/projects/production_python_react-contracts/.copier-answers.yml +++ b/examples/production_python_react/projects/production_python_react-contracts/.copier-answers.yml @@ -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 diff --git a/examples/production_python_react/projects/production_python_react-contracts/smart_contracts/helpers/build.py b/examples/production_python_react/projects/production_python_react-contracts/smart_contracts/helpers/build.py index 439af55..d583663 100644 --- a/examples/production_python_react/projects/production_python_react-contracts/smart_contracts/helpers/build.py +++ b/examples/production_python_react/projects/production_python_react-contracts/smart_contracts/helpers/build.py @@ -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", diff --git a/examples/starter_python_react/projects/starter_python_react-contracts/.copier-answers.yml b/examples/starter_python_react/projects/starter_python_react-contracts/.copier-answers.yml index 9c68283..7d19eb3 100644 --- a/examples/starter_python_react/projects/starter_python_react-contracts/.copier-answers.yml +++ b/examples/starter_python_react/projects/starter_python_react-contracts/.copier-answers.yml @@ -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 diff --git a/examples/starter_python_react/projects/starter_python_react-contracts/smart_contracts/helpers/build.py b/examples/starter_python_react/projects/starter_python_react-contracts/smart_contracts/helpers/build.py index 8f68b02..ff64d3b 100644 --- a/examples/starter_python_react/projects/starter_python_react-contracts/smart_contracts/helpers/build.py +++ b/examples/starter_python_react/projects/starter_python_react-contracts/smart_contracts/helpers/build.py @@ -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",