0.0.0 • Published 2 years ago

template_assets v0.0.0

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
-
Last release
2 years ago

Superheroes

Compatibility Build Status

This example demonstrates how to build a CRUD application on the Internet Computer using Motoko and React.

Prerequisites

Verify the following before running this demo:

  • You have downloaded and installed Node.js.

  • You have downloaded and installed the DFINITY Canister SDK.

  • You have stopped any Internet Computer or other network process that would create a port conflict on 8000.

Run for FE

  1. Build your front-end.

    npm install
      npm start

Run for FE, Motoko

  1. Start a local internet computer.

    dfx start
  2. Open a new terminal window.

  3. Reserve an identifier for your canister.

    dfx canister create --all
  1. Build your front-end.

    npm install
  2. Build your canister.

    dfx build superheroes
  3. Deploy your canister.

dfx canister install superheroes --argument="(principal \"$(dfx identity get-principal)\")"

npm start:dev

1. Take note of the URL at which the canister is accessible.

echo "http://localhost:8000/?canisterId=$(dfx canister id www)"

1. Open the aforementioned URL in your web browser.