www/apps/cloud/app/deployments/page.mdx
import { Table, InlineIcon, getOsShortcut, Kbd } from "docs-ui" import { EllipsisHorizontal } from "@medusajs/icons"
export const metadata = {
title: Deployments,
}
In this guide, you'll learn about deployments in Cloud, how they're created, and how you can troubleshoot them.
Each environment has at least one deployment, which is publicly accessible at the environment's URL.
A deployment is created from the latest source code of an environment's branch. An environment can have only one live deployment at a time.
The latest deployment of an environment is the live version of that environment, unless you redeploy a previous deployment.
If you deployed both the Medusa backend and storefront in an environment, each deployment refers to the backend and storefront. The deployment will also show the status of both the backend and storefront.
For long-lived environments, Medusa creates a new deployment every time you push a new commit to the environment's branch. For example, if your Production environment is connected to the main branch, Medusa will create a new Production deployment every time you push a new commit to the main branch.
For short-lived preview environments, Medusa creates a new environment and deployment when you open a pull request. Medusa will redeploy the preview environment every time you push a new commit to the pull request branch.
Before deploying your application on Cloud, Medusa runs the build script defined in your project's package.json file, which must run the medusa build command, among other build steps you may have.
For example, your build script may look like this:
{
"scripts": {
"build": "medusa build && npm run other-build-steps"
}
}
You can replace npm run other-build-steps with the appropriate command for your package manager, such as yarn other-build-steps.
If you're deploying both a Medusa application and a storefront on Cloud, Medusa will run the:
build command defined in the backend's package.json file, which must run the medusa build command.next build command in the storefront's directory.
Medusa deploys the contents of the .medusa/server directory of the Medusa application. This directory is created by the build process. It includes the compiled JavaScript files in your project, the production build of the admin dashboard, and other necessary files to run your Medusa application in production.
Learn more about the .medusa/server directory in the Build guide.
So, if you have custom assets like JSON files that your application needs at runtime, make sure to copy them to the .medusa/server directory after the medusa build command in your build script.
For example, if your application needs a src/data/custom.json file at runtime, you can add a script that copies it to .medusa/server/src/data/custom.json after the build process is complete.
You can also customize the Medusa Admin build configurations using the admin.vite option in your medusa-config.ts file.
Do not expose sensitive files in your deployments, especially in the .medusa/server/public directory, as they will be publicly accessible. Sensitive files include those containing secret API keys, database credentials, or any other confidential information.
You can find the deployments for a project in its dashboard.
To find the deployments for a project:
<Note title="Tip">You can also navigate to a project's deployments from the command palette. Press <Kbd>{getOsShortcut()}</Kbd> + <Kbd>K</Kbd>, select Deployments, then choose a project.
</Note>You'll find all deployments for the project's environments in the "Deployments" tab, sorted in descending order. For each deployment, you can see its branch, environment, status, and more.
You can find the deployments for an environment in the project and environment dashboards.
For example, to find the deployments for the Production environment:
You'll often need to check a deployment's details, such as its status, commit information, and logs.
To view a deployment's details:
This will open the deployment's details page, where you can also see the deployment's commit at the top of the page.
On the deployment details page, you'll find:
The deployment's commit at the top of the Cloud dashboard is also a deployment switcher.
To switch to a different deployment:
This will change the view to the selected deployment and you'll see its details and logs.
A deployment can have one of the following statuses:
<Table> <Table.Header> <Table.Row> <Table.HeaderCell> Status </Table.HeaderCell> <Table.HeaderCell> Description </Table.HeaderCell> </Table.Row> </Table.Header> <Table.Body> <Table.Row> <Table.Cell> Building </Table.Cell> <Table.Cell> The deployment is currently being built. This is the initial status of a deployment. </Table.Cell> </Table.Row> <Table.Row> <Table.Cell> Build canceled </Table.Cell> <Table.Cell> The build process was canceled due to a newer commit pushed to the branch, which resulted in a new deployment. </Table.Cell> </Table.Row> <Table.Row> <Table.Cell> Build failed </Table.Cell> <Table.Cell> The build process failed due to a build error. You can check the [build logs](../logs/page.mdx) to troubleshoot the issue. </Table.Cell> </Table.Row> <Table.Row> <Table.Cell> Awaiting deployment </Table.Cell> <Table.Cell> The deployment has finished building and is waiting to be deployed. </Table.Cell> </Table.Row> <Table.Row> <Table.Cell> Deploying </Table.Cell> <Table.Cell> The deployment is currently being deployed. </Table.Cell> </Table.Row> <Table.Row> <Table.Cell> Deploy failed </Table.Cell> <Table.Cell> The deployment failed during the deployment process. You can check the [Runtime Logs](../logs/page.mdx) to troubleshoot the issue. </Table.Cell> </Table.Row> <Table.Row> <Table.Cell> Live </Table.Cell> <Table.Cell> The deployment finished successfully and is now the live version of the environment. </Table.Cell> </Table.Row> <Table.Row> <Table.Cell> Ready </Table.Cell> <Table.Cell> The deployment was previously deployed, but it's not currently the live version of the environment. This happens when a new deployment becomes the live version. </Table.Cell> </Table.Row> </Table.Body> </Table>So, the lifecycle of a successful deployment is Building → Awaiting deployment → Deploying → Live. Then, once a new deployment is created, the previous deployment's status changes to Ready.
<Note>If a deployment is stuck at a status like "Building" or "Deploying" for a long time, contact support for assistance.
</Note>Once a deployment's status is "Live", you can access its Medusa Admin, send requests to its API routes, and access its storefront (if applicable).
Learn more in the Access Live Deployment guide.
If a deployment's status is "Build failed", you can check the build logs to understand why it failed. The build logs will show you the errors that occurred during the build process, which can help you fix the issue in your code.
You can also contact support for help with the issue, if necessary.
If a deployment's status is "Deploy failed", you can check the runtime logs to understand why it failed. The runtime logs will show you the errors that occurred during the deployment process, which can help you fix the issue in your code.
You can also contact support for help with the issue, if necessary.
You might need to redeploy an old deployment if there are unexpected issues with the current live deployment.
By redeploying a previous deployment, you revert or rollback the live version of its environment to the code in that deployment's commit.
<Note title="Important">Redeploying a deployment will not revert database changes made in the latest deployment. If you need to revert database changes, contact support for assistance based on your use case.
</Note>To redeploy a deployment:
This will trigger the redeployment process for the selected deployment. The deployment will go through the same lifecycle as a new deployment.
Once the redeployment is complete, the deployment's status will change to "Live" and it will become the new live version of the environment.
For each environment, you can change the rules that trigger a new deployment. For example, you can change the branch that the environment is connected to, which changes when a new deployment is created.
<Note>Changing the branch associated with an environment only works for long-lived environments.
</Note>To change the deployment rules for an environment:
branch rule. You can edit it by clicking the <InlineIcon Icon={EllipsisHorizontal} alt="three-dots" /> icon and choosing "Edit" from the dropdown.main to staging to create a new deployment every time you push a commit to the staging branch.The deployment rules will take effect for next deployments. For example, if you change the branch to staging, the next deployment will be created from the latest commit in the staging branch.