nocobase/docs/en-US/api/cli.md
2023-06-20 17:11:18 +08:00

6.9 KiB
Raw Blame History

@nocobase/cli

The NocoBase CLI is designed to help you develop, build, and deploy NocoBase applications.

NocoBase CLI supports ts-node and node two operation modes.

  • ts-node mode (Default): Used for development environment, support real-time compilation, with relatively slow response
  • node modeUsed for production environment, with quick response, but you need to execute yarn nocobase build to compile the entire source code first

Instructions For Use

$ yarn nocobase -h

Usage: nocobase [command] [options]

Options:
  -h, --help

Commands:
  console
  db:auth               Verify if the database is successfully connected
  db:sync               Generate relevant data tables and fields through the configuration of collections
  install               Install
  start                 Start application in production environment
  build                 Compile and package
  clean                 Delete the compiled files
  dev                   Start application for development environment with real-time compilation
  doc                   Documentation development
  test                  Testing
  umi
  upgrade               Upgrade
  migrator              Data migration
  pm                    Plugin manager
  help

Application in Scaffolding

scripts in the application scaffolding package.json is as below:

{
  "scripts": {
    "dev": "nocobase dev",
    "start": "nocobase start",
    "clean": "nocobase clean",
    "build": "nocobase build",
    "test": "nocobase test",
    "pm": "nocobase pm",
    "postinstall": "nocobase postinstall"
  }
}

Command Line Extensions

NocoBase CLI is built based on commander. You can write the extended commands freely in app/server/index.ts:

const app = new Application(config);

app.command('hello').action(() => {});

or in the plugin:

class MyPlugin extends Plugin {
  beforeLoad() {
    this.app.command('hello').action(() => {});
  }
}

Run in the terminal:

$ yarn nocobase hello

Built-in Commands

Sorted by frequency of use.

dev

Start application and compile code in real time in development environment.

NocoBase is installed automatically if it is not installed (Refer to the `install` command).
Usage: nocobase dev [options]

Options:
  -p, --port [port]
  --client
  --server
  -h, --help

Example:

# Launch application for development environment, with real-time compilation
yarn nocobase dev
# Start the server side only
yarn nocobase dev --server
# Start the client side only
yarn nocobase dev --client

start

Start application in production environment, the code needs yarn build.

  • NocoBase is installed automatically if it is not installed (Refer to the install command).
  • The source code needs to be re-packaged if it has any modification (Refer to the build command).
$ yarn nocobase start -h

Usage: nocobase start [options]

Options:
  -p, --port
  -s, --silent
  -h, --help

Example:

# Launch application for production environment
yarn nocobase start

install

Install.

$ yarn nocobase install -h

Usage: nocobase install [options]

Options:
  -f, --force
  -c, --clean
  -s, --silent
  -l, --lang [lang]
  -e, --root-email <rootEmail>
  -p, --root-password <rootPassword>
  -n, --root-nickname [rootNickname]
  -h, --help

Example:

# Initial installation
yarn nocobase install -l zh-CN -e admin@nocobase.com -p admin123
# Delete all data tables from NocoBase and reinstall
yarn nocobase install -f -l zh-CN -e admin@nocobase.com -p admin123
# Clear database and reinstall
yarn nocobase install -c -l zh-CN -e admin@nocobase.com -p admin123

Difference between -f/--force and -c/--clean:

  • -f/--force Delete data tables of NocoBase
  • -c/--clean Clear database, all data tables are deleted

upgrade

Upgrade.

yarn nocobase upgrade

test

jest test, which supports all jest-cli options, also supports -c, --db-clean.

$ yarn nocobase test -h

Usage: nocobase test [options]

Options:
  -c, --db-clean        Clear database before running all tests
  -h, --help

Example:

# Run all test files
yarn nocobase test
# Run all test files in the specified folder
yarn nocobase test packages/core/server
# Run all tests in the specified file
yarn nocobase test packages/core/database/src/__tests__/database.test.ts

# Clear database before running all tests
yarn nocobase test -c
yarn nocobase test packages/core/server -c

build

The source code needs to be compiled and packaged before the code is deployed to the production environment; and you need to re-build the code if it has any modification.

# All packages
yarn nocobase build
# Specified packages
yarn nocobase build app/server app/client

clean

Delete the compiled files.

yarn clean
# Equivalent to
yarn rimraf -rf packages/*/*/{lib,esm,es,dist}

doc

Documentation development.

# Start the documentation
yarn doc  --lang=zh-CN # Equivalent to yarn doc dev
# Build the documentation, and output it to . /docs/dist/ directory by default
yarn doc build
# View the final result of the output documentation of dist
yarn doc serve --lang=zh-CN

db:auth

Verify if the database is successfully connected.

$ yarn nocobase db:auth -h

Usage: nocobase db:auth [options]

Options:
  -r, --retry [retry]   Number of retries
  -h, --help

db:sync

Generate relevant data tables and fields through the configuration of collections.

$ yarn nocobase db:sync -h

Usage: nocobase db:sync [options]

Options:
  -f, --force
  -h, --help   display help for command

migrator

Data migration.

$ yarn nocobase migrator

Positional arguments:
  <command>
    up        Applies pending migrations
    down      Revert migrations
    pending   Lists pending migrations
    executed  Lists executed migrations
    create    Create a migration file

pm

Plugin manager.

# Create plugin
yarn pm create hello
# Register plugin
yarn pm add hello
# Enable plugin
yarn pm enable hello
# Disable plugin
yarn pm disable hello
# Remove plugin
yarn pm remove hello

Not achieved yet:

# Upgrade plugin
yarn pm upgrade hello
# Publish plugin
yarn pm publish hello

umi

app/client is built based on umi, you can run other relevant commands through nocobase umi.

# Generate the .umi cache needed for the development environment
yarn nocobase umi generate tmp

help

The help command, you can also use the option parameter, -h and --help.

# View all cli
yarn nocobase help
# Use -h instead
yarn nocobase -h
# Or --help
yarn nocobase --help
# View options of command db:sync
yarn nocobase db:sync -h