start-dev-server

Start the Wasp dev server with logs and browser console visibility.

12|6|Updated Dec 11, 2025
One-click install
npx skills add https://github.com/wasp-lang/claude-plugins --skill start-dev-server
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: start-dev-server
Source: https://github.com/wasp-lang/claude-plugins/tree/main/plugins/wasp/skills/start-dev-server
Command: npx skills add https://github.com/wasp-lang/claude-plugins --skill start-dev-server

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill eliminates the friction of starting Wasp development by automatically handling database setup, migrations, and server startup.

Core Features & Use Cases

  • Smart Database Detection: Automatically identifies and configures PostgreSQL or SQLite databases.
  • Migration Automation: Handles Prisma migrations with proper terminal setup to avoid common issues.
  • Use Case: When beginning work on your Wasp project, this Skill sets up the development environment and ensures everything runs smoothly.

Quick Start

Ask Claude "start the dev server for my Wasp app" to automatically configure and launch your development environment.

Frequently Asked Questions about start-dev-server

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I start a development server for my Wasp project?

Starting a Wasp dev server automatically configures your database, runs migrations, and launches the server with full debugging visibility. Run the dev server to access logs and browser console visibility for client-side errors during development.

Does Wasp dev server handle database migrations automatically?

Yes, Wasp dev server handles Prisma migrations automatically during startup. It detects whether you're using PostgreSQL or SQLite, configures the database, and applies migrations with proper terminal setup to avoid common issues.

Can I run the Wasp dev server in the background?

The Wasp dev server can run as a background task in your current session or externally. Either approach gives you access to logs and enables browser console connections for debugging client-side errors.

What databases does the Wasp dev server support?

Wasp dev server supports both PostgreSQL and SQLite databases. It automatically detects and configures whichever database your project uses, eliminating manual setup friction.

Do I need to manually set up Prisma before starting the dev server?

No, the dev server handles Prisma migration setup automatically. You don't need to run migration commands manually—the server coordinates with Prisma and environment checks during startup.