Supacrawler Docs

Getting Started

Learn how to set up and use CoreMVP

Prerequisites

Before you begin, ensure you have:

  • Node.js 18+ or Bun installed
  • Docker and Docker Compose
  • Git

Installation

Clone the repository and install dependencies:

git clone https://github.com/your-org/coremvp.git
cd coremvp
bun install

Development Setup

Using Docker

Start all services with Docker Compose:

./Dev

This will start:

  • Frontend on port 3002
  • Backend on port 4000
  • Supabase services

Local Development

For local development without Docker:

cd apps/web
bun run dev

Environment Variables

Create a .env file in the root directory:

NEXT_PUBLIC_APP_URL=http://localhost:3002
NEXT_PUBLIC_BACKEND_URL=http://localhost:4000

Next Steps

Was this page helpful?