Installation Guide

Learn how to install and set up Lattice AI

Installation Guide

This guide will help you install and set up Lattice AI on your system.

Prerequisites

Before you begin, make sure you have:

  • Node.js 18.x or later
  • npm or yarn package manager
  • A modern web browser
  • Git installed

Installation Steps

1. Clone the Repository

git clone https://github.com/lattice-ai/lattice-core.git
cd lattice-core

2. Install Dependencies

npm install
# or
yarn install

3. Configure Environment

Create a .env file in the root directory with the following content:

NEXT_PUBLIC_RPC_URL=your_rpc_url
NEXT_PUBLIC_CHAIN_ID=your_chain_id

4. Start the Development Server

npm run dev
# or
yarn dev

Configuration Options

Make sure to set up your environment variables before starting the application.

Environment Variables

VariableDescription
NEXT_PUBLIC_RPC_URLYour RPC endpoint URL
NEXT_PUBLIC_CHAIN_IDNetwork chain ID

Next Steps

After installation, you can:

  1. Connect your wallet
  2. Deploy your first node
  3. Start using the Lattice AI network

Always verify your configuration before deploying to production.

Troubleshooting

If you encounter any issues:

  1. Check the FAQ
  2. Join our Discord for support
  3. Open an issue on GitHub

On this page