Auto Deploys
Push to deploy, instantly
Automatically deploy your applications whenever you push to your repository. Get instant preview deployments for every pull request with unique URLs, making collaboration and review seamless.
Live Deployment Timeline
Recent Deployments
Your latest deployments across all branches
| Branch | Commit | Status | Preview | Created |
|---|---|---|---|---|
main | a1b2c3dfeat: add user authentication | Success | Visit | 2 minutes ago |
feature/dark-mode | e4f5g6hstyle: implement dark mode toggle | Building | Visit | 5 minutes ago |
fix/login-bug | i7j8k9lfix: resolve login redirect issue | Success | Visit | 1 hour ago |
main | m0n1o2pchore: update dependencies | Success | Visit | 3 hours ago |
Key Features
Preview Deployments
Every pull request gets its own unique deployment URL for easy review and testing.
Instant Rollbacks
Roll back to any previous deployment with a single click if something goes wrong.
Zero Downtime
Deployments happen seamlessly with no downtime for your users.
Build Caching
Smart caching speeds up builds by reusing unchanged dependencies.
Deployment Configuration
Configure your deployments with a simple ploy.json file in your repository.
ploy.json
{
"builds": [
{
"src": "package.json",
"use": "@ploy/next"
}
],
"routes": [
{ "src": "/(.*)", "dest": "/" }
],
"env": {
"NODE_ENV": "production"
}
}