Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add blessed TEALScript template #316

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/algokit/cli/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ def _get_blessed_templates() -> dict[str, BlessedTemplateSource]:
url="gh:algorandfoundation/algokit-beaker-default-template",
description="Official template for starter or production Beaker applications.",
),
"tealscript": BlessedTemplateSource(
url="gh:algorand-devrel/tealscript-algokit-template",
description="Official template for TEALScript applications.",
),
"react": BlessedTemplateSource(
url="gh:algorandfoundation/algokit-react-frontend-template",
description="Official template for React frontend applications (smart contracts not included).",
Expand Down Expand Up @@ -158,7 +162,7 @@ def validate_dir_name(context: click.Context, param: click.Parameter, value: str
default=[],
metavar="<key> <value>",
)
def init_command( # noqa: PLR0913
def init_command(
*,
directory_name: str | None,
template_name: str | None,
Expand Down
Loading