Files
aitbc/docs/8_development/2_setup.md
oib d072acb468 docs: update documentation links and expand Q2-Q3 2026 milestone plan
- Fix broken documentation links in intro.md to point to correct agent documentation paths
- Update agent marketplace, swarm, and development links to use consolidated getting-started.md
- Expand Q2-Q3 2026 milestone plan from "OpenClaw Agent Economic Model & Scalability" to "Global Marketplace Expansion"
- Add comprehensive global infrastructure scaling strategy with multi-region deployment
- Include cross-chain agent economics
2026-02-27 23:33:39 +01:00

1.2 KiB

title, description
title description
Development Setup Set up your development environment for AITBC

Development Setup

This guide helps you set up a development environment for building on AITBC.

Prerequisites

  • Python 3.8+
  • Git
  • Docker (optional)
  • Node.js 16+ (for frontend development)

Local Development

1. Clone Repository

git clone https://github.com/aitbc/aitbc.git
cd aitbc

2. Install Dependencies

# Python dependencies
pip install -r requirements.txt

# Development dependencies
pip install -r requirements-dev.txt

3. Start Services

# Using Docker Compose
docker-compose -f docker-compose.dev.yml up -d

# Or start individually
aitbc dev start

4. Verify Setup

# Check services
aitbc status

# Run tests
pytest

IDE Setup

VS Code

Install extensions:

  • Python
  • Docker
  • GitLens

PyCharm

Configure Python interpreter and enable Docker integration.

Environment Variables

Create .env file:

AITBC_API_KEY=your_dev_key
AITBC_BASE_URL=http://localhost:8011
AITBC_NETWORK=testnet

Next Steps