Skip to content

directus-labs/directus-template-cli

Repository files navigation

Directus Template CLI

A streamlined CLI tool for managing Directus templates - making it easy to apply and extract template configurations across instances.

⚠️ Beta Release Notice: This tool is currently in beta and best suited for:

  • Proof of Concept (POC) projects
  • Demo environments
  • New project setups

We strongly recommend against using this tool in existing production environments or as a critical part of your CI/CD pipeline without thorough testing. Always create backups before applying templates.

Important Notes:

  • Primary Purpose: Built to deploy templates created by the Directus Core Team. While community templates are supported, the unlimited possible configurations make comprehensive support challenging.
  • Database Compatibility: PostgreSQL and SQLite are recommended. MySQL users may encounter known issues.
  • Performance: Remote operations (extract/apply) are rate-limited to 10 requests/second using bottleneck. Processing time varies based on your instance size (collections, items, assets).
  • Version Compatibility:
    • v0.5.0+: Compatible with Directus 11 and up
    • v0.4.0: Use for Directus 10 compatibility (npx [email protected] extract/apply)

Using the @latest tag ensures you're receiving the latest version of the packaged templates with the CLI. You can review the specific versions on NPM and use @{version} syntax to apply the templates included with that version.

Applying a Template

🚧 Make backups of your project/database before applying templates.

  1. Create a Directus instance on Directus Cloud or using self-hosted version.
  2. Login and create a Static Access Token for the admin user.
  3. Copy the static token and your Directus URL.
  4. Run the following command on the terminal and follow the prompts.
npx directus-template-cli@latest apply

You can choose from our community maintained templates or you can also choose a template from a local directory or a public GitHub repository.

Programmatic Mode

By default, the CLI will run in interactive mode. For CI/CD pipelines or automated scripts, you can use the programmatic mode:

Using a token:

npx directus-template-cli@latest apply -p --directusUrl="http://localhost:8055" --directusToken="admin-token-here" --templateLocation="./my-template" --templateType="local"

Using email/password:

npx directus-template-cli@latest apply -p --directusUrl="http://localhost:8055" --userEmail="[email protected]" --userPassword="admin" --templateLocation="./my-template" --templateType="local"

Partial apply (apply only some of the parts of a template to the instance):

npx directus-template-cli@latest apply -p --directusUrl="http://localhost:8055" --userEmail="[email protected]" --userPassword="your-password" --templateLocation="./my-template" --templateType="local" --partial --schema --permissions --no-content

Available flags for programmatic mode:

  • --directusUrl: URL of the Directus instance to apply the template to (required)
  • --directusToken: Token to use for the Directus instance (required if not using email/password)
  • --userEmail: Email for Directus authentication (required if not using token)
  • --userPassword: Password for Directus authentication (required if not using token)
  • --templateLocation: Location of the template to apply (required)
  • --templateType: Type of template to apply. Options: community, local, github. Defaults to local.
  • --partial: Enable partial template application
  • --content: Load Content (data)
  • --dashboards: Load Dashboards
  • --extensions: Load Extensions
  • --files: Load Files
  • --flows: Load Flows
  • --permissions: Load Permissions
  • --schema: Load Schema
  • --settings: Load Settings
  • --users: Load Users

When using --partial, you can also use --no flags to exclude specific components from being applied. For example:

npx directus-template-cli@latest apply -p --directusUrl="http://localhost:8055" --userEmail="[email protected]" --userPassword="your-password" --templateLocation="./my-template" --templateType="local" --partial --no-content --no-users

This command will apply the template but exclude content and users. Available --no flags include:

  • --no-content: Skip loading Content (data)
  • --no-dashboards: Skip loading Dashboards
  • --no-extensions: Skip loading Extensions
  • --no-files: Skip loading Files
  • --no-flows: Skip loading Flows
  • --no-permissions: Skip loading PermissionsI
  • --no-schema: Skip loading Schema
  • --no-settings: Skip loading Settings
  • --no-users: Skip loading Users

Template Component Dependencies

When applying templates, certain components have dependencies on others. Here are the key relationships to be aware of:

  • --users: Depends on --permissions. If you include users, permissions will automatically be included.
  • --permissions: Depends on --schema. If you include permissions, the schema will automatically be included.
  • --content: Depends on --schema. If you include content, the schema will automatically be included.
  • --files: No direct dependencies, but often related to content. Consider including --content if you're including files.
  • --flows: No direct dependencies, but may interact with other components. Consider your specific use case.
  • --dashboards: No direct dependencies, but often rely on data from other components.
  • --extensions: No direct dependencies, but may interact with other components.
  • --settings: No direct dependencies, but affects the overall system configuration.

When using the --partial flag, keep these dependencies in mind. For example:

npx directus-template-cli@latest apply -p --directusUrl="http://localhost:8055" --directusToken="admin-token-here" --templateLocation="./my-template" --templateType="local" --partial --users

This command will automatically include --permissions and --schema along with --users, even if not explicitly specified.

If you use --no- flags, be cautious about excluding dependencies. For instance, using --no-schema while including --content may lead to errors or incomplete application of the template.

Using Environment Variables

You can also pass flags as environment variables. This can be useful for CI/CD pipelines or when you want to avoid exposing sensitive information in command-line arguments. Here are the available environment variables:

  • TARGET_DIRECTUS_URL: Equivalent to --directusUrl
  • TARGET_DIRECTUS_TOKEN: Equivalent to --directusToken
  • TARGET_DIRECTUS_EMAIL: Equivalent to --userEmail
  • TARGET_DIRECTUS_PASSWORD: Equivalent to --userPassword
  • TEMPLATE_LOCATION: Equivalent to --templateLocation
  • TEMPLATE_TYPE: Equivalent to --templateType

Existing Data

You can apply a template to an existing Directus instance. This is nice because you can have smaller templates that you can "compose" for various use cases. The CLI tries to be smart about existing items in the target Directus instance. But mileage may vary depending on the size and complexity of the template and the existing instance.

System Collections

In most of the system collections (collections,roles, permissions, etc.), if an item with the same identifier already exists, it will be typically be SKIPPED vs overwritten.

Exceptions:

  • directus_settings: The CLI attempts to merge the template's project settings with the existing settings in the target instance. Using the existing settings as a base and updating them with the values from the template. This should prevent overwriting branding, themes, and other customizations.

Your Collections:

For data in your own user-created collections, if an item has the same primary key, the data will be overwritten with the incoming data from the template.


Extracting a Template

The CLI can also extract a template from a Directus instance so that it can be applied to other instances.

Note: We do not currently support partial extraction. The entire template will be extracted. We thought it better to have the data and not need it, than need it and not have it.

  1. Make sure you remove any sensitive data from the Directus instance you don't want to include in the template.
  2. Login and create a Static Access Token for the admin user.
  3. Copy the static token and your Directus URL.
  4. Run the following command on the terminal and follow the prompts.
npx directus-template-cli@latest extract

Programmatic Mode

By default, the CLI will run in interactive mode. For CI/CD pipelines or automated scripts, you can use the programmatic mode:

Using a token:

npx directus-template-cli@latest extract -p --templateName="My Template" --templateLocation="./my-template" --directusToken="admin-token-here" --directusUrl="http://localhost:8055"

Using email/password:

npx directus-template-cli@latest extract -p --templateName="My Template" --templateLocation="./my-template" --userEmail="[email protected]" --userPassword="admin" --directusUrl="http://localhost:8055"

Available flags for programmatic mode:

  • --directusUrl: URL of the Directus instance to extract the template from (required)
  • --directusToken: Token to use for the Directus instance (required if not using email/password)
  • --userEmail: Email for Directus authentication (required if not using token)
  • --userPassword: Password for Directus authentication (required if not using token)
  • --templateLocation: Directory to extract the template to (required)
  • --templateName: Name of the template (required)

Using Environment Variables

Similar to the Apply command, you can use environment variables for the Extract command as well:

  • SOURCE_DIRECTUS_URL: Equivalent to --directusUrl
  • SOURCE_DIRECTUS_TOKEN: Equivalent to --directusToken
  • SOURCE_DIRECTUS_EMAIL: Equivalent to --userEmail
  • SOURCE_DIRECTUS_PASSWORD: Equivalent to --userPassword
  • TEMPLATE_LOCATION: Equivalent to --templateLocation

Logs

The Directus Template CLI logs information to a file in the .directus-template-cli/logs directory.

Logs are automatically generated for each run of the CLI. Here's how the logging system works:

  • A new log file is created for each CLI run.
  • Log files are stored in the .directus-template-cli/logs directory within your current working directory.
  • Each log file is named run-[timestamp].log, where [timestamp] is the ISO timestamp of when the CLI was initiated.

The logger automatically sanitizes sensitive information such as passwords, tokens, and keys before writing to the log file. But it may not catch everything. Just be aware of this and make sure to remove the log files when they are no longer needed.

Note: If you encounter any issues with the CLI, providing these log files can greatly assist in diagnosing and resolving the problem.

License

This tool is licensed under the MIT License.