Skip to main content
Prerequisites: - Node.js v24 - pnpm v11.1.2 through Corepack - Docker and Docker Compose - Git
This guide walks you through setting up Reactive Resume for local development. Whether you’re contributing to the project or customizing it for your needs, these steps will get you up and running.

Setting Up Your Development Environment

1

Clone the Repository

2

Install Dependencies

This project uses pnpm through Corepack.
3

Start Infrastructure Services

If you want to run the app directly on your machine with pnpm dev, start only the infrastructure services:
This starts the following infrastructure services:
  • PostgreSQL — Database (port 5432)
  • Redis — AI Agent workspace streams/state (port 6379)
  • SeaweedFS — S3-compatible storage (port 8333)
From v5.1.0 onwards — PDF generation now runs entirely in the browser via @react-pdf/renderer, so no Browserless or Chromium container is required for development.
compose.dev.yml can also run the app in a development container with docker compose -f compose.dev.yml up -d. Use the service-filtered command above when you want local editor tooling and pnpm dev on the host.
Wait for all services to be healthy before proceeding. Check with docker compose -f compose.dev.yml ps.
4

Configure Environment Variables

Create a .env file in the project root:
Email Testing: The development stack includes Mailpit, an email testing tool. All emails sent by the application will be captured and viewable at http://localhost:8025. No emails will actually be sent to real addresses during development.
5

Run Database Migrations If Needed

The server startup path runs migrations before serving traffic. To apply migrations manually without starting the app, export DATABASE_URL because Drizzle Kit reads directly from process.env:
6

Start the Development Server

Your local Reactive Resume instance will be available at http://localhost:3000.

Available Scripts

Here are the most commonly used scripts during development:

Development

CommandDescription
pnpm devStart the web and server development processes
pnpm buildBuild the production web bundle and server bundle
pnpm startStart the built production server
pnpm typecheckRun TypeScript type checking
pnpm testRun Vitest across workspaces
pnpm exec biome check .Run a non-mutating Biome check
pnpm checkRun Biome with write/fix behavior (--write --unsafe)
pnpm exec turbo boundariesCheck workspace/package boundary rules

Database

CommandDescription
pnpm run db:generateGenerate migration files from schema changes
pnpm run db:migrateApply pending migrations
pnpm run db:studioOpen Drizzle Studio (database GUI)

Internationalization

CommandDescription
pnpm run lingui:extractExtract translatable strings from code

Understanding the Project Structure

Understanding the project structure will help you navigate the codebase:

Working with the Database

Viewing the Database

Use Drizzle Studio to explore and manage your database:
This opens a web-based GUI at https://local.drizzle.studio.

Making Schema Changes

  1. Edit the schema in packages/db/src/schema/*
  2. Generate a migration:
  3. Apply the migration:
Always review generated migrations before applying them, especially when working with existing data.

Working with Translations

Reactive Resume uses Lingui for internationalization.

Adding Translatable Text

Use the t macro for strings or <Trans> component for JSX:

Extracting Translations

After adding new translatable text, extract them to the locale files:
Translation files are located in apps/web/locales in .po format.

Code Quality

Linting & Formatting

Uses Biome for linting, formatting, import organization, and Tailwind class sorting:

Type Checking

Run TypeScript type checking:
Configure your IDE to use Biome for formatting and lint diagnostics. The repo uses tabs, double quotes, 120-column lines, and organized import groups.

Troubleshooting

The Vite web server uses PORT (default 3000), and the Hono server uses SERVER_PORT (default 3001). Either stop the conflicting process or choose alternate ports: bash PORT=3002 SERVER_PORT=3003 pnpm dev
Ensure Docker containers are running: bash docker compose -f compose.dev.yml ps docker compose -f compose.dev.yml up -d Check that PostgreSQL is healthy and accessible on port 5432.
Verify SeaweedFS is running and the bucket exists: bash docker compose -f compose.dev.yml logs seaweedfs docker compose -f compose.dev.yml logs seaweedfs_create_bucket If the bucket wasn’t created, restart the bucket creation service: bash docker compose -f compose.dev.yml restart seaweedfs_create_bucket
The route tree may need regeneration. Run the dev server which auto-generates routes: bash pnpm run dev Or run type checking to see specific errors: bash pnpm run typecheck

Next Steps

Project Architecture

Deep dive into the project architecture and codebase structure.

GitHub Repository

View the source code and contribute to the project.