We've raised a $22m Series A →
Conductor

Quickstart

NextJS + Vercel

Conductor works well with NextJS apps. Here's a basic conductor.json to add to the root directory of your project.

Once added, every new workspace will automatically copy your .env.local and .vercel configuration, and then install dependencies.

{
  "scripts": {
    "setup": "cp $CONDUCTOR_ROOT_PATH/.env.local .env.local && cp -r $CONDUCTOR_ROOT_PATH/.vercel . && pnpm install",
    "run": "pnpm run dev",
    "archive": ""
  }
}