Skip to main content

Build and run the Hello World dapp

In this topic, you'll build and deploy the Hello World dapp with the Chromia Command-line Interface (Chromia CLI). Read more about the features of the Chromia CLI in the Chromia CLI command reference section.

Prerequisites

Run dapp in Chromia CLI

Once you install the Chromia CLI, it's time to create a project.

  1. Create the project folder in a path of your choice and use the chr create-rell-dapp command.

    chr create-rell-dapp

    The chr create-rell-dapp command creates a new Rell structured project my-rell-dapp with the necessary files. A main.rell file, which includes the Hello World query and test files in the src/test/ folder. You also have a standard configuration for your project in the chromia. yml file. For more information, see the project config file.

    my-rell-dapp
    |--chromia.yml
    |--src
    |--main.rell
    |--test
    |--arithmetic_test.rell
    |--data_test.rell

    The next step is to start a node and run your app locally. You can do it in a couple of different ways, but the most straightforward method we recommend is the Chromia CLI.

  2. Use the chr node start command to start a node. Make sure it's available in the same working directory where you have the chromia.yml file.

    chr node start

    The chr node start command starts a node with your applications running on it. All the blockchains listed in the blockchains key in the chromia.yml file get started.

    blockchains:
    my_rell_dapp: <----- This is the blockchain that starts
    module: main <----- This is the entry point of the chain
    note

    If you are running the node on a different URL than the default http://localhost:7740, you can use the --api-url to specify it.

    Now the node should be up, where the Rell backend is running with a local blockchain. Locate the Blockchain RID in the output of the node. You need it to interact with your dapp. The Blockchain RID is the hex value following the Blockchain RID: tag. For example, see the following image.

    blockchain RID CLI

    The last step is to query your dapp and test that the backend works correctly.

  3. Write the following in a new terminal with your project folder as the working directory. Remember to replace the <BlockchainRID> with your Blockchain RID from the node output.

    chr query --blockchain-rid <BlockchainRID> hello_world
  4. Your terminal should show you the following message.

    "Hello World!"

Great job. The Rell backend is up and running and works as it should. You have now run a Hello World dapp in the Chromia CLI.

For your next steps with Rell, feel free to follow the courses on the Chromia learning platform.