Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ icp new <project-name> --subfolder <template-name>

| Template | Description |
| --- | --- |
| [hello-world](./hello-world/) | Full-stack dapp with a frontend and backend canister (Rust or Motoko) |
| [hello-world](./hello-world/) | Full-stack app with a frontend and backend canister (Rust or Motoko) |
| [motoko](./motoko/) | A basic Motoko canister |
| [rust](./rust/) | A basic Rust canister |
| [bitcoin-starter](./bitcoin-starter/) | Bitcoin integration with balance reading (Rust or Motoko) |
Expand Down
2 changes: 1 addition & 1 deletion hello-world/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hello World

This example demonstrates a full-stack dapp with a frontend and backend canister, showing how to pass environment variables from the asset canister to the frontend webapp.
This example demonstrates a full-stack app with a frontend and backend canister, showing how to pass environment variables from the asset canister to the frontend webapp.

## Overview

Expand Down
3 changes: 2 additions & 1 deletion hello-world/react-frontend/canister.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ name: frontend

recipe:
# https://github.com/dfinity/icp-cli-recipes/blob/main/recipes/asset-canister/README.md
type: "@dfinity/asset-canister@v2.1.0"
# IMPORTANT: This recipe requires icp-cli >= 0.2.7
type: "@dfinity/asset-canister@v2.2.0"
configuration:
build:
# Install the dependencies
Expand Down
3 changes: 2 additions & 1 deletion hello-world/vue-frontend/canister.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ name: frontend

recipe:
# https://github.com/dfinity/icp-cli-recipes/blob/main/recipes/asset-canister/README.md
type: "@dfinity/asset-canister@v2.1.0"
# IMPORTANT: This recipe requires icp-cli >= 0.2.7
type: "@dfinity/asset-canister@v2.2.0"
configuration:
build:
# Install the dependencies
Expand Down
3 changes: 2 additions & 1 deletion static-website/icp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
canisters:
- name: frontend
recipe:
type: "@dfinity/asset-canister@v2.1.0"
# IMPORTANT: This recipe requires icp-cli >= 0.2.7
type: "@dfinity/asset-canister@v2.2.0"
configuration:
build:
# Install the dependencies
Expand Down
Loading