Essentials

Config

Learn how to use Resolver's config.

Config file

Resolver's config is set in a resolver.config.json file. The config file is located in Resolver's install directory for easy access.

Below is a sample resolver.config.json file:

resolver.config.json
{
  "activeProfile": "my-profile",
  "profiles": {
    "my-proile": {
      "projectRootDirectory": "C:\\projects",
      "projectArchiveRootDirectory": "C:\\archive",
      "projectExportRootDirectory": "C:\\exports"
    }
  }
}

Config settings

  • activeProfile string

The name of the currently active profile.

An active profile is required to use other CLI commands. Remember that settings are saved to profiles.
  • profiles object

A dictionary object of all unique profiles.

  • projectRootDirectory string

The path to the central project repository folder that contains all individual project folders.

  • projectArchiveRootDirectory string

The path to the central project archive folder.

  • projectExportRootDirectory string

The path to the central project export/publish folder.