What problem does it solve? Setting up and debugging Inngest locally involves many moving parts: Dev Server flags, auto-discovery, environment variables, Docker networking, and platform-specific serve endpoint quirks. This Skill consolidates that operational knowledge so you can install, run, test, and self-host Inngest without hunting through documentation. ## Core Features & Use Cases - Dev Server Setup: Install and launch inngest dev with auto-discovery, custom ports, multiple app URLs, and config files (JSON/YAML/TOML). - Local Testing: Send events via SDK or curl, and unit test functions with @inngest/test including step mocking and event mocking. - Docker & Self-Hosting: Run the Dev Server in Docker Compose, or operate a production server with inngest start using Redis, PostgreSQL, and signing keys. - Use Case: Your Express app serves Inngest functions at /api/inngest but the Dev Server shows functionsFound: 0. Use this Skill to verify the serve endpoint with curl, fix the serve() configuration, and set INNGEST_DEV=1 so the SDK stops defaulting to Cloud mode. ## Quick Start Start the Inngest Dev Server with npx and point it at my app's serve endpoint, then help me send a test event to trigger my function.