Skip to content

Commit

Permalink
Merge pull request #217 from joe-p/beaker_starter
Browse files Browse the repository at this point in the history
Beaker Starter template
  • Loading branch information
robdmoore authored Mar 28, 2023
2 parents 8f7816a + 13bd9b9 commit 390ac19
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/cli/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ Name of an official template to use. To see a list of descriptions, run this com

* **Options**

beaker | playground
beaker_starter | beaker_production | playground



Expand Down
8 changes: 6 additions & 2 deletions src/algokit/cli/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,13 @@ class BlessedTemplateSource(TemplateSource):
# this is a function so we can modify the values in unit tests
def _get_blessed_templates() -> dict[str, BlessedTemplateSource]:
return {
"beaker": BlessedTemplateSource(
"beaker_starter": BlessedTemplateSource(
url="gh:algorand-devrel/starter-algokit-beaker-template",
description="Official starter template for Beaker applications.",
),
"beaker_production": BlessedTemplateSource(
url="gh:algorandfoundation/algokit-beaker-default-template",
description="Official starter template for production Beaker applications.",
description="Official template for production Beaker applications.",
),
"playground": BlessedTemplateSource(
url="gh:algorandfoundation/algokit-beaker-playground-template",
Expand Down

1 comment on commit 390ac19

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/algokit
   __init__.py15753%6–13, 17–24, 32–34
   __main__.py220%1–3
src/algokit/cli
   completions.py105298%78, 93
   doctor.py48394%138–140
   goal.py30197%37
   init.py1801691%261–262, 284, 287–289, 300, 344, 370, 410, 419–421, 424–429, 442
   localnet.py91397%157, 178–179
src/algokit/core
   bootstrap.py1331688%109, 132, 197, 200, 206–220
   conf.py30487%13, 17, 25, 27
   doctor.py65789%67–69, 92–94, 134
   log_handlers.py68790%50–51, 63, 112–116, 125
   proc.py45198%98
   sandbox.py1171587%84–91, 102, 167, 183, 198–200, 216
   version_prompt.py73889%27–28, 40, 59–62, 80, 109
TOTAL11419292% 

Tests Skipped Failures Errors Time
187 0 💤 0 ❌ 0 🔥 10.354s ⏱️

Please sign in to comment.