Skip to main content
Contribute to the Repoch web interface built with Next.js and React.

Development Setup

1

Install Dependencies

npm install --prefix repoch/apps/web_app
2

Start Dev Server

Connect to Repoch server on default host/port:
npm run dev --prefix repoch/apps/web_app
3

Start API Server

In a separate terminal:
repoch server
The dev server runs at http://localhost:3000 with hot reload.

Building for Production

npm run build --prefix repoch/apps/web_app
The production build is served by the Repoch server automatically.

Next Steps

Database Migrations

Manage database schema changes with Alembic