Quick Start Guide
Ready to dive into HiveX? Awesome! Whether you're here to tinker with the code, build something cool, or just explore what our AI-powered DeFi platform can do, we'll get you up and running in no time.
Before We Start
You'll need a few things installed:
Node.js (version 23 or newer)
pnpm (our package manager of choice)
npm install -g pnpmGit (for grabbing the code)
Some coding know-how (mainly TypeScript/Node.js basics)
Let's Get Started!
1. Grab the Code
First, let's clone the repo and hop into the right folder:
git clone https://github.com/PLACEHOLDER/hivex.git
cd hivex2. Set Up Your Environment
Create a .env file in the root directory with your API keys and configuration:
cp .env.example .envThen open .env in your favorite editor and add your details:
3. Install Dependencies
Let's get everything installed:
4. Build the Project
Now let's build the code:
5. Start the Server
Fire up the server:
6. Launch the Web Interface
In a new terminal window:
You'll find your shiny new web interface at http://localhost:3000 (unless your computer says otherwise).
What's Next?
Explore the Code
Take a peek around the eliza directory β that's where all the magic happens. Check out our System Overview to understand the architecture, or dive into our Multi-Agent System to see how it all works together.
Check Out the Docs
Got questions? Our docs folder is packed with helpful info and tips.
Join the Fun
Need a hand or want to chat? Jump into our Discord β we're a friendly bunch!
That's it! You're all set to start your HiveX journey. Happy building! π
Last updated