This repository is intentionally kept minimal and simple. It's designed to help you get your first experience with Gno in under five minutes, focusing on the most common tools and basic concepts.
If you're already familiar with Gno or looking for a more comprehensive setup, check out the "Next Steps" section below for links to more advanced resources.
-
Clone this repository:
git clone https://github.com/gnolang/getting-started.git cd getting-started
-
Install dependencies:
make install
This will check if Go is installed and install the required Gno tools.
-
Start the development server:
make dev
-
Open your browser and visit https://localhost:8888
This repository contains a simple Gno realm with:
- A
Render
function that displays a welcome message and instructions - A
Set
function to update the realm's state - A
Get
function to retrieve the stored message
Ready to learn more? Check out these resources:
- Gno Documentation: https://docs.gno.land
- Gno Repository Template: https://github.com/gnolang/repo-template