From e18f635e116f30387b884dc784d418026f8dbfb2 Mon Sep 17 00:00:00 2001 From: Altynbek Orumbayev Date: Wed, 3 Apr 2024 11:07:03 +0200 Subject: [PATCH] chore: addressing pr comments --- .../workflows/production-python-smart-contract-python-cd.yaml | 2 +- .../workflows/production-python-smart-contract-python-ci.yaml | 2 +- .../production_python_smart_contract_python/README.md | 3 +-- .../production-python-smart-contract-typescript-cd.yaml | 2 +- .../production-python-smart-contract-typescript-ci.yaml | 2 +- .../production_python_smart_contract_typescript/README.md | 3 +-- .../generators/starter_python_smart_contract_python/README.md | 3 +-- .../starter_python_smart_contract_typescript/README.md | 3 +-- .../.github/workflows/production-python-cd.yaml | 2 +- .../.github/workflows/production-python-ci.yaml | 2 +- examples/production_python/README.md | 3 +-- examples/starter_python/README.md | 3 +-- template_content/README.md.jinja | 3 +-- ...in('includes', 'project_name_kebab.jinja') %}-cd.yaml.jinja | 2 +- ...in('includes', 'project_name_kebab.jinja') %}-ci.yaml.jinja | 2 +- 15 files changed, 15 insertions(+), 22 deletions(-) diff --git a/examples/generators/production_python_smart_contract_python/.github/workflows/production-python-smart-contract-python-cd.yaml b/examples/generators/production_python_smart_contract_python/.github/workflows/production-python-smart-contract-python-cd.yaml index 8f43367..1c6b458 100644 --- a/examples/generators/production_python_smart_contract_python/.github/workflows/production-python-smart-contract-python-cd.yaml +++ b/examples/generators/production_python_smart_contract_python/.github/workflows/production-python-smart-contract-python-cd.yaml @@ -31,7 +31,7 @@ jobs: run: pipx install algokit - name: Bootstrap dependencies - run: algokit bootstrap all --project-name 'production_python_smart_contract_python' + run: algokit project bootstrap all --project-name 'production_python_smart_contract_python' - name: Configure git shell: bash diff --git a/examples/generators/production_python_smart_contract_python/.github/workflows/production-python-smart-contract-python-ci.yaml b/examples/generators/production_python_smart_contract_python/.github/workflows/production-python-smart-contract-python-ci.yaml index ef01823..de310d8 100644 --- a/examples/generators/production_python_smart_contract_python/.github/workflows/production-python-smart-contract-python-ci.yaml +++ b/examples/generators/production_python_smart_contract_python/.github/workflows/production-python-smart-contract-python-ci.yaml @@ -27,7 +27,7 @@ jobs: run: algokit localnet start - name: Bootstrap dependencies - run: algokit bootstrap all --project-name 'production_python_smart_contract_python' + run: algokit project bootstrap all --project-name 'production_python_smart_contract_python' - name: Configure git shell: bash diff --git a/examples/generators/production_python_smart_contract_python/README.md b/examples/generators/production_python_smart_contract_python/README.md index aae3316..13e98b8 100644 --- a/examples/generators/production_python_smart_contract_python/README.md +++ b/examples/generators/production_python_smart_contract_python/README.md @@ -26,11 +26,10 @@ Ensure the following pre-requisites are installed and properly configured: Run the following commands within the project folder: - **Install Poetry**: Required for Python dependency management. [Installation Guide](https://python-poetry.org/docs/#installation). Verify with `poetry -V` to see version `1.2`+. -- **Setup Project**: Execute `algokit bootstrap all` to: +- **Setup Project**: Execute `algokit project bootstrap all` to: - Install dependencies and setup a Python virtual environment in `.venv`. - Copy `.env.template` to `.env`. - **Start LocalNet**: Use `algokit localnet start` to initiate a local Algorand network. -- **Install Project Dependencies**: With `algokit project bootstrap all`, ensure all dependencies are ready. ### Development Workflow diff --git a/examples/generators/production_python_smart_contract_typescript/.github/workflows/production-python-smart-contract-typescript-cd.yaml b/examples/generators/production_python_smart_contract_typescript/.github/workflows/production-python-smart-contract-typescript-cd.yaml index 5abadce..6b833a3 100644 --- a/examples/generators/production_python_smart_contract_typescript/.github/workflows/production-python-smart-contract-typescript-cd.yaml +++ b/examples/generators/production_python_smart_contract_typescript/.github/workflows/production-python-smart-contract-typescript-cd.yaml @@ -31,7 +31,7 @@ jobs: run: pipx install algokit - name: Bootstrap dependencies - run: algokit bootstrap all --project-name 'production_python_smart_contract_typescript' + run: algokit project bootstrap all --project-name 'production_python_smart_contract_typescript' - name: Configure git shell: bash diff --git a/examples/generators/production_python_smart_contract_typescript/.github/workflows/production-python-smart-contract-typescript-ci.yaml b/examples/generators/production_python_smart_contract_typescript/.github/workflows/production-python-smart-contract-typescript-ci.yaml index 5c2cbd1..abda5f6 100644 --- a/examples/generators/production_python_smart_contract_typescript/.github/workflows/production-python-smart-contract-typescript-ci.yaml +++ b/examples/generators/production_python_smart_contract_typescript/.github/workflows/production-python-smart-contract-typescript-ci.yaml @@ -27,7 +27,7 @@ jobs: run: algokit localnet start - name: Bootstrap dependencies - run: algokit bootstrap all --project-name 'production_python_smart_contract_typescript' + run: algokit project bootstrap all --project-name 'production_python_smart_contract_typescript' - name: Configure git shell: bash diff --git a/examples/generators/production_python_smart_contract_typescript/README.md b/examples/generators/production_python_smart_contract_typescript/README.md index fc9bf27..533588e 100644 --- a/examples/generators/production_python_smart_contract_typescript/README.md +++ b/examples/generators/production_python_smart_contract_typescript/README.md @@ -26,11 +26,10 @@ Ensure the following pre-requisites are installed and properly configured: Run the following commands within the project folder: - **Install Poetry**: Required for Python dependency management. [Installation Guide](https://python-poetry.org/docs/#installation). Verify with `poetry -V` to see version `1.2`+. -- **Setup Project**: Execute `algokit bootstrap all` to: +- **Setup Project**: Execute `algokit project bootstrap all` to: - Install dependencies and setup a Python virtual environment in `.venv`. - Copy `.env.template` to `.env`. - **Start LocalNet**: Use `algokit localnet start` to initiate a local Algorand network. -- **Install Project Dependencies**: With `algokit project bootstrap all`, ensure all dependencies are ready. ### Development Workflow diff --git a/examples/generators/starter_python_smart_contract_python/README.md b/examples/generators/starter_python_smart_contract_python/README.md index 7689295..c1a3be3 100644 --- a/examples/generators/starter_python_smart_contract_python/README.md +++ b/examples/generators/starter_python_smart_contract_python/README.md @@ -26,11 +26,10 @@ Ensure the following pre-requisites are installed and properly configured: Run the following commands within the project folder: - **Install Poetry**: Required for Python dependency management. [Installation Guide](https://python-poetry.org/docs/#installation). Verify with `poetry -V` to see version `1.2`+. -- **Setup Project**: Execute `algokit bootstrap all` to: +- **Setup Project**: Execute `algokit project bootstrap all` to: - Install dependencies and setup a Python virtual environment in `.venv`. - Copy `.env.template` to `.env`. - **Start LocalNet**: Use `algokit localnet start` to initiate a local Algorand network. -- **Install Project Dependencies**: With `algokit project bootstrap all`, ensure all dependencies are ready. ### Development Workflow diff --git a/examples/generators/starter_python_smart_contract_typescript/README.md b/examples/generators/starter_python_smart_contract_typescript/README.md index 7adccad..384a8b6 100644 --- a/examples/generators/starter_python_smart_contract_typescript/README.md +++ b/examples/generators/starter_python_smart_contract_typescript/README.md @@ -26,11 +26,10 @@ Ensure the following pre-requisites are installed and properly configured: Run the following commands within the project folder: - **Install Poetry**: Required for Python dependency management. [Installation Guide](https://python-poetry.org/docs/#installation). Verify with `poetry -V` to see version `1.2`+. -- **Setup Project**: Execute `algokit bootstrap all` to: +- **Setup Project**: Execute `algokit project bootstrap all` to: - Install dependencies and setup a Python virtual environment in `.venv`. - Copy `.env.template` to `.env`. - **Start LocalNet**: Use `algokit localnet start` to initiate a local Algorand network. -- **Install Project Dependencies**: With `algokit project bootstrap all`, ensure all dependencies are ready. ### Development Workflow diff --git a/examples/production_python/.github/workflows/production-python-cd.yaml b/examples/production_python/.github/workflows/production-python-cd.yaml index cfb17aa..68ba5ac 100644 --- a/examples/production_python/.github/workflows/production-python-cd.yaml +++ b/examples/production_python/.github/workflows/production-python-cd.yaml @@ -31,7 +31,7 @@ jobs: run: pipx install algokit - name: Bootstrap dependencies - run: algokit bootstrap all --project-name 'production_python' + run: algokit project bootstrap all --project-name 'production_python' - name: Configure git shell: bash diff --git a/examples/production_python/.github/workflows/production-python-ci.yaml b/examples/production_python/.github/workflows/production-python-ci.yaml index 33e5abf..2019e01 100644 --- a/examples/production_python/.github/workflows/production-python-ci.yaml +++ b/examples/production_python/.github/workflows/production-python-ci.yaml @@ -27,7 +27,7 @@ jobs: run: algokit localnet start - name: Bootstrap dependencies - run: algokit bootstrap all --project-name 'production_python' + run: algokit project bootstrap all --project-name 'production_python' - name: Configure git shell: bash diff --git a/examples/production_python/README.md b/examples/production_python/README.md index 76f4033..e728d55 100644 --- a/examples/production_python/README.md +++ b/examples/production_python/README.md @@ -26,11 +26,10 @@ Ensure the following pre-requisites are installed and properly configured: Run the following commands within the project folder: - **Install Poetry**: Required for Python dependency management. [Installation Guide](https://python-poetry.org/docs/#installation). Verify with `poetry -V` to see version `1.2`+. -- **Setup Project**: Execute `algokit bootstrap all` to: +- **Setup Project**: Execute `algokit project bootstrap all` to: - Install dependencies and setup a Python virtual environment in `.venv`. - Copy `.env.template` to `.env`. - **Start LocalNet**: Use `algokit localnet start` to initiate a local Algorand network. -- **Install Project Dependencies**: With `algokit project bootstrap all`, ensure all dependencies are ready. ### Development Workflow diff --git a/examples/starter_python/README.md b/examples/starter_python/README.md index 8eeb029..8750537 100644 --- a/examples/starter_python/README.md +++ b/examples/starter_python/README.md @@ -26,11 +26,10 @@ Ensure the following pre-requisites are installed and properly configured: Run the following commands within the project folder: - **Install Poetry**: Required for Python dependency management. [Installation Guide](https://python-poetry.org/docs/#installation). Verify with `poetry -V` to see version `1.2`+. -- **Setup Project**: Execute `algokit bootstrap all` to: +- **Setup Project**: Execute `algokit project bootstrap all` to: - Install dependencies and setup a Python virtual environment in `.venv`. - Copy `.env.template` to `.env`. - **Start LocalNet**: Use `algokit localnet start` to initiate a local Algorand network. -- **Install Project Dependencies**: With `algokit project bootstrap all`, ensure all dependencies are ready. ### Development Workflow diff --git a/template_content/README.md.jinja b/template_content/README.md.jinja index f8159a8..8ce113d 100644 --- a/template_content/README.md.jinja +++ b/template_content/README.md.jinja @@ -26,11 +26,10 @@ Ensure the following pre-requisites are installed and properly configured: Run the following commands within the project folder: - **Install Poetry**: Required for Python dependency management. [Installation Guide](https://python-poetry.org/docs/#installation). Verify with `poetry -V` to see version `1.2`+. -- **Setup Project**: Execute `algokit bootstrap all` to: +- **Setup Project**: Execute `algokit project bootstrap all` to: - Install dependencies and setup a Python virtual environment in `.venv`. - Copy `.env.template` to `.env`. - **Start LocalNet**: Use `algokit localnet start` to initiate a local Algorand network. -- **Install Project Dependencies**: With `algokit project bootstrap all`, ensure all dependencies are ready. ### Development Workflow diff --git a/template_content/{% if use_github_actions %}.github{% endif %}/workflows/{% include pathjoin('includes', 'project_name_kebab.jinja') %}-cd.yaml.jinja b/template_content/{% if use_github_actions %}.github{% endif %}/workflows/{% include pathjoin('includes', 'project_name_kebab.jinja') %}-cd.yaml.jinja index eb5af8a..cd68d24 100644 --- a/template_content/{% if use_github_actions %}.github{% endif %}/workflows/{% include pathjoin('includes', 'project_name_kebab.jinja') %}-cd.yaml.jinja +++ b/template_content/{% if use_github_actions %}.github{% endif %}/workflows/{% include pathjoin('includes', 'project_name_kebab.jinja') %}-cd.yaml.jinja @@ -36,7 +36,7 @@ jobs: run: pipx install algokit - name: Bootstrap dependencies - run: algokit bootstrap all --project-name '{{ project_name }}' + run: algokit project bootstrap all --project-name '{{ project_name }}' - name: Configure git shell: bash diff --git a/template_content/{% if use_github_actions %}.github{% endif %}/workflows/{% include pathjoin('includes', 'project_name_kebab.jinja') %}-ci.yaml.jinja b/template_content/{% if use_github_actions %}.github{% endif %}/workflows/{% include pathjoin('includes', 'project_name_kebab.jinja') %}-ci.yaml.jinja index 03dae94..8294d58 100644 --- a/template_content/{% if use_github_actions %}.github{% endif %}/workflows/{% include pathjoin('includes', 'project_name_kebab.jinja') %}-ci.yaml.jinja +++ b/template_content/{% if use_github_actions %}.github{% endif %}/workflows/{% include pathjoin('includes', 'project_name_kebab.jinja') %}-ci.yaml.jinja @@ -30,7 +30,7 @@ jobs: run: algokit localnet start - name: Bootstrap dependencies - run: algokit bootstrap all --project-name '{{ project_name }}' + run: algokit project bootstrap all --project-name '{{ project_name }}' - name: Configure git shell: bash