Installation

Prerequisites

Install Naomi

# Clone the repository
git clone https://github.com/eternal-labs/naomi-network.git
cd naomi-network

# Install dependencies
npm install

# Build all packages
npm run build

Environment Variables

Create a .env file in the root directory:

# Required: Anthropic API Key
ANTHROPIC_API_KEY=your_claude_api_key_here

# Optional: Server Configuration
PORT=3000

# Optional: Colosseum Hackathon
COLOSSEUM_API_KEY=your_colosseum_api_key_here
COLOSSEUM_CLAIM_CODE=your_claim_code_here

Important: Never commit your .env file to version control. It's already in .gitignore.

Last updated