Essentials

API

The Resolver API for executing terminal commands.

Command List

Below are the commands that you can execute with Resolver:

Get version

terminal
resolver version

Gets the version of Resolver that is installed on your machine.

Scaffold project

terminal
resolver project scaffold my-project

Scaffolds a new project in the projectRootDirectory named my-project.

Export project

terminal
resolver project export my-project

Copies the exports from the my-project project folder into projectExportRootDirectory.

Archive project

terminal
resolver project archive my-project

Archives the project folder for my-project by copying it into a compressed zip folder and sending the zip folder to the projectArchiveRootDirectory.

Initialize config

terminal
resolver config init

Creates a new resolver.config.json file in Resolver's install directory.

Initialize config profile

terminal
resolver config profile init my-profile

Creates a new config profile named my-profile.

Activate config profile

terminal
resolver config profile set my-profile

Sets the config profile my-profile as the active config profile.

Config inspect

terminal
resolver config inspect

Displays the resolver.config.json file in the terminal.

Config set

terminal
resolver config set <SETTING_NAME> <SETTING_VALUE>

Saves the <SETTING_NAME> and <SETTING_VALUE> to the config profile. See config for a list of the settings.

Remember that settings are saved to config profiles. You must have an active config profile before saving any settings.