deploy_local
Start the project locally as a development server. Automatically detects Node.js, Python, Go, or Rust, installs dependencies, runs migrations, and seeds data.
Instructions
Start the project locally as a native development server. Auto-detects project type (Node.js, Python, Go, Rust) and runs the appropriate dev command. Handles dependency installation, migrations, and seeding.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| port | No | Port to run the dev server on | |
| envFile | No | Path to .env file to load | |
| envVars | No | Environment variables to set | |
| background | No | Run server in background | |
| installDeps | No | Install dependencies first | |
| projectPath | Yes | Absolute path to the project | |
| seedCommand | No | Seed command to run (e.g., 'npx prisma db seed') | |
| startCommand | No | Custom start command (auto-detected if not set) | |
| runMigrations | No | Migration command to run (e.g., 'npx prisma migrate dev') |