What problem does it solve? Setting up production deployment requires choosing the right hosting model, writing correct run and build commands, and avoiding misconfigurations. This Skill guides configuring deployment settings and publishing a project so it goes live with the correct target type. ## Core Features & Use Cases - Deployment Configuration: Set the deployment target (autoscale, vm, scheduled, or static) along with production run and build commands via the deployConfig function. - Target Selection Guidance: Match project types to the right target, such as autoscale for web apps, vm for bots, scheduled for cron jobs, and static for client-side sites. - Use Case: After building a Flask API, configure it with a Gunicorn run command on the autoscale target, verify it works, then prompt the user to publish it to a live .replit.app domain. ## Quick Start Configure my Python web app for deployment with Gunicorn on the autoscale target and let me know when it is ready to publish.