> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Redeploy project

> Redeploy an Automate.ax project from its active artifact.

`automate.redeployProject` creates a deployment from the project's active artifact and a complete set of integration account bindings.

```ts automations/redeploy-project.automation.ts theme={null}
import { automation } from "automate.ax"
import { automate } from "automate.ax/automate"

export default automation("Redeploy project", () => {
  automate.redeployProject({ bindings: [], projectId: "proj_123" })
})
```

Each binding contains `serviceId`, `binding`, and `accountId`; service and binding pairs must be unique. The action returns the new deployment `id` and transaction ID and requires `deployment:create`.

Redeployment is replay-unsafe because the management endpoint creates a new deployment and does not accept an idempotency key. Automate.ax will not replay it after an ambiguous delivery outcome.
