What problem does it solve?
Developers working with Webiny need to understand how to deploy serverless applications to AWS, run local development against cloud infrastructure, manage multiple environments, and debug API, Admin, and infrastructure errors without guessing at CLI commands or workflows.
Core Features & Use Cases
- Deployment Management: Deploy all applications (Core, API, Admin) or individual ones with
yarn webiny deploy, target specific environments with --env, and inspect URLs with yarn webiny info.
- Local Development: Run
yarn webiny watch admin for a hot-reloading React dev server, or yarn webiny watch api for Local Lambda Development that forwards AWS events to your local machine for instant backend iteration.
- Environment & Debugging Workflows: Manage long-lived and short-lived environments, understand dev vs prod deployment modes, and debug API logs, Admin GraphQL requests, and Pulumi infrastructure errors.
- Use Case: A developer creates a feature branch, deploys a short-lived environment with
yarn webiny deploy --env feature-123, watches the API locally to debug a GraphQL resolver, then redeploys the API after stopping watch mode.
Quick Start
Ask the assistant to walk you through deploying your Webiny project and starting local API development with watch mode.