Skip to content

Nemanya8/gno.land-visualized

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 

Repository files navigation

gno.land Visualized

This project visualizes the gno.land ecosystem using a Next.js frontend and a Go backend.

Prerequisites

  • Node.js (v16 or higher)
  • npm or yarn
  • Go (v1.24 or higher)
  • Docker (optional, for containerized backend)

Running the Frontend

  1. Navigate to the frontend directory:

    cd gnoland-visualized
  2. Install the dependencies:

    npm install
    # or
    yarn install
  3. Create a .env.local file:

    NEXT_PUBLIC_API_URL=http://localhost:8080
  4. Start the development server:

    npm start
    
  5. Open your browser and go to http://localhost:3000 to see the application.

Running the Backend

  1. Navigate to the backend directory:

    cd go-backend
  2. Build the backend:

    go build -o go-backend ./main
  3. Run the backend:

    ./go-backend
  4. The backend server will be running at http://localhost:8080.

Running with Docker (Optional)

  1. Navigate to the backend directory:
    cd go-backend
  2. Build the Docker image:
    docker build -t go-backend .
  3. Run the Docker container:
    docker run -p 8080:8080 go-backend

Contributions

Contributions are welcome! Please open an issue or submit a pull request.

About

gno.land ecosystem visualized showing all packages and realms

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published