nb app start

Start the NocoBase app for a selected env. npm/Git installations run local app commands; Docker installations start the saved app container.

Usage

nb app start [flags]

Parameters

ParameterTypeDescription
--env, -estringCLI env name to start; uses the current env if omitted
--quickstartbooleanStart the app in quickstart mode
--port, -pstringOverride the appPort saved in env config
--daemon, -d / --no-daemonbooleanWhether to run in daemon mode; enabled by default
--instances, -iintegerNumber of instances to run
--launch-modestringLaunch mode: pm2 or node
--verbosebooleanShow underlying local or Docker command output

Examples

nb app start
nb app start --env local
nb app start --env local --quickstart
nb app start --env local --port 12000
nb app start --env local --daemon
nb app start --env local --no-daemon
nb app start --env local --instances 2
nb app start --env local --launch-mode pm2
nb app start --env local-docker