Quick Start

Get up and running with Workflow in minutes

Quick Start Guide

Get up and running with CodeSpider in minutes.

Prerequisites

  • Node.js 18+
  • pnpm package manager
  • Docker (for production deployment)

Installation

1. Install Dependencies

pnpm install

2. Configure Environment

cp env.example .env

Edit .env with your credentials. See Environment Setup for detailed configuration options.

3. Start Development Server

pnpm dev

The application will be available at http://localhost:3000.

4. Build for Production

pnpm build

5. Run Tests

pnpm test

Docker Deployment

For production deployment with Docker:

docker compose up --build

See Docker Setup for detailed Docker configuration.

Next Steps