Learn how to deploy your NextCoder applications
NextCoder provides seamless deployment capabilities for your applications. Deployments can be triggered directly from the workspace editor with a single click.
The deployment process includes:
NextCoder supports deployment to:
Deployment settings can be configured in your workspace:
Deployments can be triggered programmatically:
// Trigger deployment via API
const response = await fetch('/api/workspaces/{workspaceId}/deploy', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
environment: 'production',
customDomain: 'myapp.example.com'
}),
});
const { previewUrl } = await response.json();Coolify is the recommended deployment platform for NextCoder applications. For detailed instructions, see our Coolify deployment guide.
Key benefits of using Coolify:
Securely manage environment variables for your deployments: