Admin Dashboard Quickstart
This document will guide you through setting up the admin dashboard in the Medusa backend.
The admin dashboard is now shipped as an NPM package, and the previous GitHub repository has been deprecated.
Overview
The admin dashboard is installed on the Medusa backend. Setting it up depends on how you intend to use it:
- Served alongside the Medusa backend: with this approach, the admin dashboard starts when you start the Medusa backend. This also means you can later deploy the Medusa backend along with the admin dashboard on the same hosting.
- Served separately from the Medusa backend: with this approach, the admin dashboard starts separately from the Medusa backend. You still need the Medusa backend to be running as the admin uses its APIs. This is useful if you intend to later deploy the admin dashboard on a different hosting than the Medusa Backend, such as using Vercel.
This guide will explain the steps and configurations required for both approaches.
Prerequisites
Medusa Backend
As the admin dashboard is a plugin installed on the Medusa Backend, you must have a Medusa Backend installed first. You can learn how to install it in this documentation.
Node.js
The Admin uses Vite v4.1.4 which requires v14.8+ or v16+ of Node.js. You can check which version of Node you have by running the following command:
node -v
You can install Node from the official website.
Option 1: Install and Serve Admin with the Backend
This section explains how to install the admin to be served with the Medusa Backend and later deployed together.
If you decide later to serve the admin for development separately or deploy it on a different hosting, you can go back and follow the steps in Option 2.
Step 1: Install the Package
In the directory of your Medusa backend, run the following command to install admin dashboard:
- npm
- Yarn
npm install @medusajs/admin
yarn add @medusajs/admin
Step 2: Add Admin to Medusa Configurations
In medusa-config.js
, add the admin plugin into the array of plugins
:
const plugins = [
// ...
{
resolve: "@medusajs/admin",
/** @type {import('@medusajs/admin').PluginOptions} */
options: {
// ...
},
},
]
The plugin accepts the following options:
serve
: (default:true
) a boolean indicating whether to serve the admin dashboard when the Medusa backend starts. If set tofalse
, you can serve the admin dashboard using the dev command.path
: (default:app
) a string indicating the path the admin server should run on. It shouldn't be prefixed or suffixed with a slash/
, and it can't be one of the reserved paths: "admin" and "store".outDir
: Optional path for where to output the admin build files.autoRebuild
: (default:false
) a boolean indicating whether the admin UI should be rebuilt if there are any changes or if a missing build is detected when the backend starts. If not set, you must manually build the admin dashboard.
Optional: Manually Building Admin Dashboard
If you have autoRebuild
disabled, you must build your admin dashboard before starting the Medusa backend. Refer to the build command for more details.
Step 3: Test the Admin Dashboard
If you disabled the serve
option, you need to run the admin dashboard separately using the dev command
You can test the admin dashboard by running the following command in the directory of the Medusa backend:
- npm
- Yarn
npm run start
yarn run start
This starts the Medusa Backend and the admin dashboard. By default, the admin will be available on the URL localhost:9000/app
. If you set the path
option, then the admin will be available on localhost:9000/<PATH>
with <PATH>
being the value of the path
option.
Option 2: Install and Serve Admin Separately
This section explains how to install the admin dashboard using approach 2, which allows you to serve and later deploy the admin separately.
If you decide later to serve and deploy the admin alongside the server, you can go back and follow the steps in Option 1.
Step 1: Install the Package
In the directory of your Medusa backend, run the following command to install admin dashboard:
- npm
- Yarn
npm install @medusajs/admin --save-dev
yarn add @medusajs/admin --dev
Step 2: Add Scripts to Package.json
Add the following scripts to package.json
in the directory of the Medusa backend:
{
"scripts": {
// other scripts...
"build:admin": "medusa-admin build",
"dev:admin": "medusa-admin dev"
}
}
Where:
build:admin
: Used to manually create a build of the admin. In this approach, it's useful with the--deployment
option to build the admin for deployment. You can learn more about all available options in this section.dev:admin
: Used to run the development server of the admin. You can learn about other available options for this command in this section.
Step 3: Start Admin in Development
Make sure to run the Medusa backend first. Then, in the root directory of the backend, run the following command to start the admin development server:
- npm
- Yarn
npm run dev:admin
yarn run dev:admin
This runs the admin dashboard on localhost:7001
.
Demo Credentials
If you installed the demo data when you installed the Medusa backend by using the --seed
option or running:
- npm
- Yarn
npm run seed
yarn run seed
You can use the email admin@medusa-test.com
and password supersecret
to log in.
Passwords in Medusa are hashed using the scrypt-kdf. The password hash is then stored in the database.
Create a New Admin User
To create a new admin user from the command line, run the following command in the directory holding your Medusa backend:
medusa user -e some@email.com -p some-password
This will create a new user that you can use to log into your admin panel.
Build Command Options
The build
command in the admin CLI allows you to manually build the admin dashboard. If you intend to use it, you should typically add it to the package.json
of the Medusa backend:
{
"scripts": {
// other scripts...
"build:admin": "medusa-admin build"
}
}
You can add the following options to the medusa-admin build
command:
--deployment
: a boolean value indicating that the build should be ready for deployment. When this option is added, options are not loaded frommedusa-config.js
anymore, and it means the admin will be built to be hosted on an external host. For example,medusa-admin build --deployment
.--backend
or-b
: a string specifying the URL of the Medusa backend. This can be useful with the--deployment
option. The default here is the value of the environment variableMEDUSA_BACKEND_URL
. For example,medusa-admin build --deployment --backend example.com
--out-dir
or-o
: a string specifying a custom path to output the build files to. By default, it will be thebuild
directory. For example,medusa-admin --deployment --out-dir public
.--include
or-i
: a list of strings of paths to files you want to include in the build output. It can be useful if you want to inject files that are relevant to your external hosting, such as adding a200.html
file that is needed for redirects on Surge. For example,medusa-admin --deployment --include 200.html
--include-dist
or-d
: a string specifying the path to copy the files specified in--include
to. By default, the files are coopied to the root of the build directory. You can use this option to change that. For example,medusa-admin --deployment --include 200.html --include-dist static
.
Dev Command Options
The dev
command in the admin CLI allows you to run the admin dashboard in development separately from the Medusa backend. If you intend to use it, you should typically add it to the package.json
of the Medusa backend:
{
"scripts": {
// other scripts...
"dev:admin": "medusa-admin dev"
}
}
You can add the following options to the medusa-admin dev
command:
--backend
or-b
: a string specifying the URL of the Medusa backend. By default, it's the value of the environment variableMEDUSA_BACKEND_URL
. For example,medusa-admin dev --backend example.com
.--port
or-p
: the port to run the admin on. By default, it's7001
. For example,medusa-admin dev --port 8000
.
Admin User Guide
The admin dashboard provides a lot of ecommerce features including managing Return Merchandise Authorization (RMA) flows, store settings, products, orders, and much more.
You can learn more about the admin dashboard and its features in the User Guide.