Running Dev Environment
This guide explains how to setup and run a Development environment for Directus so that you can work on the platform's source code. To install the Production version, please follow to our Docker Guide.
Minimum Requirements
You will need to have version 18 of Node.js for the Development environment of Directus.
You will also need to have the package manager pnpm installed. It's recommended to install pnpm via Corepack for automatic use of the correct version.
1. Fork the Directus repository
Go to the repository and fork it to your GitHub account. A fork is your copy of the Directus repository which allows you to freely experiment with changes without affecting the original project.
2. Clone from your repository
git clone git@github.com:YOUR-USERNAME/directus.git
git clone git@github.com:YOUR-USERNAME/directus.git
3. Make a new branch
git checkout -b YOUR-BRANCH-NAME
git checkout -b YOUR-BRANCH-NAME
4. Install dependencies and build the project
pnpm install
pnpm build
pnpm install
pnpm build
5. Setup local configuration
Create a .env
file in /api
Create an .env
file under the api
folder using vars from the online config help.
Config Values
The SECRET
config option from Security is mandatory in production.
Also the Database Configuration must be specified. You might want to use the docker-compose.yml file to spin up a test database or a local mail server.
Upload/Extensions Folder
If you are using the local storage driver, your files will upload to /api/uploads
. If you are locally developing extensions from the extensions folder, that folder should be located at /api/extensions
.
6. Initialize the database
For this step, you'll need to already have a SQL database up-and-running, except if you're using the SQLite driver, which will create the database (file) for you.
Admin Account
Adding the ADMIN_EMAIL
& ADMIN_PASSWORD
to the .env
file before running the bootstrap
command, will populate the admin user with the provided credentials instead of random values. ADMIN_TOKEN
sets the API token for the admin user.
To start the initialization run the following command:
pnpm --filter api cli bootstrap
pnpm --filter api cli bootstrap
This will set-up the required tables for Directus and make sure all the migrations have run.
7. Start the development server
You can run all packages in development with the following command:
pnpm --recursive dev
pnpm --recursive dev
Race Conditions
When running multiple or all packages, sometimes ts-node
may not start up the API properly because of race conditions due to changes happening to other packages. You can either rerun the command to restart the API or opt to choose what packages to work on as described below.
If you wish to choose what packages to work on, you should run the dev
script for that package. You can see their names and list of scripts in their related package.json
.
Example of running the API only:
pnpm --filter api dev
pnpm --filter api dev
If you want to work on multiple packages at once, you should create a new instance of your terminal for each package. Example of running both the API and App at the same time:
Terminal 1 [Api] | Terminal 2 [App] |
---|---|
bash
| bash
|
TIP
If you encounter errors during this installation process, make sure your node version meets the minimum requirements
8. Make your fixes/changes
At this point you are ready to start working on Directus! Before diving in however, it's worth reading through the introduction to Contributing.
Debugging The App
There are several ways to debug the app but the easiest way to do it is with the Vue Devtools. It's recommended to use the Vue Devtools with Chrome.
Computed Debugging
To debug computed properties, it can be helpful to have a look at this Vue Guide.
Debugging The API in VS Code
To debug the API, we recommend to use Visual Studio Code with it's built in debugger.
- First you need to setup the config for the debugger. Create the following file
./directus/api/.vscode/launch.json
and paste in the following structure.
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Api",
"skipFiles": ["<node_internals>/**"],
"cwd": "${workspaceFolder}/api",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["run", "dev"]
}
]
}
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Api",
"skipFiles": ["<node_internals>/**"],
"cwd": "${workspaceFolder}/api",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["run", "dev"]
}
]
}
Make sure that you have caching disabled as it otherwise returns the cached response. To disable this, go to your
.env
file in the API and setCACHE_ENABLED
tofalse
.In the
tsconfig.json
, setsourceMap
to true.Now you can start the API by going to the debugger view in VS Code, select to debug the API and press
Start Debugging
. This runs the API and allows you to set breakpoints.
9. Running tests
Tests run automatically through GitHub Actions. However you may wish to run the tests locally especially when you write tests yourself.
Install Docker and ensure that the service is running.
# Ensure that you are testing on the lastest codebase
pnpm build
# Run the unit tests
pnpm test
# Clean up in case you ran the blackbox tests before
docker compose -f tests/blackbox/docker-compose.yml down -v
# Start the necessary containers for the blackbox tests
docker compose -f tests/blackbox/docker-compose.yml up -d --wait
# Run the blackbox tests
pnpm test:blackbox
# Ensure that you are testing on the lastest codebase
pnpm build
# Run the unit tests
pnpm test
# Clean up in case you ran the blackbox tests before
docker compose -f tests/blackbox/docker-compose.yml down -v
# Start the necessary containers for the blackbox tests
docker compose -f tests/blackbox/docker-compose.yml up -d --wait
# Run the blackbox tests
pnpm test:blackbox