mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 18:16:31 +00:00
a6eebb940f
* feat: improve code * feat: update docs * feat: update docs * Update index.md * Update features.md * Update when.md * Update contributing.md * Update translations.md * feat: clean up * Add files via upload * Update the-first-app.md * Update plugins.md * Update a-b-c.md * Update blocks.md * feat: update docs * Add files via upload * Update charts.md * feat: update navs * Update index.md * Update index.md * Update features.md * Update index.md * Update docker-compose.md * Update create-nocobase-app.md * Update git-clone.md * Update contributing.md * Update translations.md * Update plugins.md * Update the-first-app.md * Add files via upload * Update charts.md * Update charts.md * Update a-b-c.md * Update collections.md * Update menus.md * Update menus.md Co-authored-by: Zhou <zhou.working@gmail.com>
351 lines
6.2 KiB
Markdown
351 lines
6.2 KiB
Markdown
# NocoBase CLI
|
||
|
||
NocoBase CLI 旨在帮助你开发、构建和部署 NocoBase 应用。
|
||
|
||
<Alert>
|
||
|
||
NocoBase CLI 支持 ts-node 和 node 两种运行模式
|
||
|
||
- ts-node 模式(默认):用于开发环境,支持实时编译,但是响应较慢
|
||
- node 模式:用于生产环境,响应迅速,但需要先执行 `yarn nocobase build` 将全部源码进行编译
|
||
|
||
</Alert>
|
||
|
||
## 使用说明
|
||
|
||
```bash
|
||
$ yarn nocobase -h
|
||
|
||
Usage: nocobase [command] [options]
|
||
|
||
Options:
|
||
-h, --help
|
||
|
||
Commands:
|
||
console
|
||
db:auth 校验数据库是否连接成功
|
||
db:sync 通过 collections 配置生成相关数据表和字段
|
||
install 安装
|
||
start 生产环境启动应用
|
||
build 编译打包
|
||
clean 删除编译之后的文件
|
||
dev 启动应用,用于开发环境,支持实时编译
|
||
doc 文档开发
|
||
test 测试
|
||
umi
|
||
upgrade 升级
|
||
migrator 数据迁移
|
||
pm 插件管理器
|
||
help
|
||
```
|
||
|
||
## 在脚手架里应用
|
||
|
||
应用脚手架 `package.json` 里的 `scripts` 如下:
|
||
|
||
```json
|
||
{
|
||
"scripts": {
|
||
"dev": "nocobase dev",
|
||
"start": "nocobase start",
|
||
"clean": "nocobase clean",
|
||
"build": "nocobase build",
|
||
"test": "nocobase test",
|
||
"pm": "nocobase pm",
|
||
"postinstall": "nocobase postinstall"
|
||
}
|
||
}
|
||
```
|
||
|
||
## 命令行扩展
|
||
|
||
NocoBase CLI 基于 [commander](https://github.com/tj/commander.js) 构建,你可以自由扩展命令,扩展的 command 可以写在 `app/server/index.ts` 里:
|
||
|
||
```ts
|
||
const app = new Application(config);
|
||
|
||
app.command('hello').action(() => {});
|
||
```
|
||
|
||
或者,写在插件里:
|
||
|
||
```ts
|
||
class MyPlugin extends Plugin {
|
||
beforeLoad() {
|
||
this.app.command('hello').action(() => {});
|
||
}
|
||
}
|
||
```
|
||
|
||
终端运行
|
||
|
||
```bash
|
||
$ yarn nocobase hello
|
||
```
|
||
|
||
## 内置命令行
|
||
|
||
按使用频率排序
|
||
|
||
### `dev`
|
||
|
||
开发环境下,启动应用,代码实时编译。
|
||
|
||
<Alert>
|
||
NocoBase 未安装时,会自动安装(参考 install 命令)
|
||
</Alert>
|
||
|
||
```bash
|
||
Usage: nocobase dev [options]
|
||
|
||
Options:
|
||
-p, --port [port]
|
||
--client
|
||
--server
|
||
-h, --help
|
||
```
|
||
|
||
示例
|
||
|
||
```bash
|
||
# 启动应用,用于开发环境,实时编译
|
||
yarn nocobase dev
|
||
# 只启动服务端
|
||
yarn nocobase dev --server
|
||
# 只启动客户端
|
||
yarn nocobase dev --client
|
||
```
|
||
|
||
### `start`
|
||
|
||
生产环境下,启动应用,代码需要 yarn build。
|
||
|
||
<Alert>
|
||
|
||
- NocoBase 未安装时,会自动安装(参考 install 命令)
|
||
- 源码有修改时,需要重新打包(参考 build 命令)
|
||
|
||
</Alert>
|
||
|
||
```bash
|
||
$ yarn nocobase start -h
|
||
|
||
Usage: nocobase start [options]
|
||
|
||
Options:
|
||
-p, --port
|
||
-s, --silent
|
||
-h, --help
|
||
```
|
||
|
||
示例
|
||
|
||
```bash
|
||
# 启动应用,用于生产环境,
|
||
yarn nocobase start
|
||
```
|
||
|
||
### `install`
|
||
|
||
安装
|
||
|
||
```bash
|
||
$ 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
|
||
```
|
||
|
||
示例
|
||
|
||
```bash
|
||
# 初始安装
|
||
yarn nocobase install -l zh-CN -e admin@nocobase.com -p admin123
|
||
# 删除 NocoBase 的所有数据表,并重新安装
|
||
yarn nocobase install -f -l zh-CN -e admin@nocobase.com -p admin123
|
||
# 清空数据库,并重新安装
|
||
yarn nocobase install -c -l zh-CN -e admin@nocobase.com -p admin123
|
||
```
|
||
|
||
<Alert>
|
||
|
||
`-f/--force` 和 `-c/--clean` 的区别
|
||
- `-f/--force` 删除 NocoBase 的数据表
|
||
- `-c/--clean` 清空数据库,所有数据表都会被删除
|
||
|
||
</Alert>
|
||
|
||
### `upgrade`
|
||
|
||
升级
|
||
|
||
```bash
|
||
yarn nocobase upgrade
|
||
```
|
||
|
||
### `test`
|
||
|
||
jest 测试,支持所有 [jest-cli](https://jestjs.io/docs/cli) 的 options,除此之外还扩展了 `-c, --db-clean` 的支持。
|
||
|
||
```bash
|
||
$ yarn nocobase test -h
|
||
|
||
Usage: nocobase test [options]
|
||
|
||
Options:
|
||
-c, --db-clean 运行所有测试前清空数据库
|
||
-h, --help
|
||
```
|
||
|
||
示例
|
||
|
||
```bash
|
||
# 运行所有测试文件
|
||
yarn nocobase test
|
||
# 运行指定文件夹下所有测试文件
|
||
yarn nocobase test packages/core/server
|
||
# 运行指定文件里的所有测试
|
||
yarn nocobase test packages/core/database/src/__tests__/database.test.ts
|
||
|
||
# 运行测试前,清空数据库
|
||
yarn nocobase test -c
|
||
yarn nocobase test packages/core/server -c
|
||
```
|
||
|
||
### `build`
|
||
|
||
代码部署到生产环境前,需要将源码编译打包,如果代码有修改,也需要重新构建。
|
||
|
||
```bash
|
||
# 所有包
|
||
yarn nocobase build
|
||
# 指定包
|
||
yarn nocobase build app/server app/client
|
||
```
|
||
|
||
### `clean`
|
||
|
||
删除编译之后的文件
|
||
|
||
```bash
|
||
yarn clean
|
||
# 等同于
|
||
yarn rimraf -rf packages/*/*/{lib,esm,es,dist}
|
||
```
|
||
|
||
### `doc`
|
||
|
||
文档开发
|
||
|
||
```bash
|
||
# 启动文档
|
||
yarn doc --lang=zh-CN # 等同于 yarn doc dev
|
||
# 构建文档,默认输出到 ./docs/dist/ 目录下
|
||
yarn doc build
|
||
# 查看 dist 输出的文档最终效果
|
||
yarn doc serve --lang=zh-CN
|
||
```
|
||
|
||
### `db:auth`
|
||
|
||
校验数据库是否连接成功
|
||
|
||
```bash
|
||
$ yarn nocobase db:auth -h
|
||
|
||
Usage: nocobase db:auth [options]
|
||
|
||
Options:
|
||
-r, --retry [retry] 重试次数
|
||
-h, --help
|
||
```
|
||
|
||
### `db:sync`
|
||
|
||
通过 collections 配置生成数据表和字段
|
||
|
||
```bash
|
||
$ yarn nocobase db:sync -h
|
||
|
||
Usage: nocobase db:sync [options]
|
||
|
||
Options:
|
||
-f, --force
|
||
-h, --help display help for command
|
||
```
|
||
|
||
### `migrator`
|
||
|
||
数据迁移
|
||
|
||
```bash
|
||
$ 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`
|
||
|
||
插件管理器
|
||
|
||
```bash
|
||
# 创建插件
|
||
yarn pm create hello
|
||
# 注册插件
|
||
yarn pm add hello
|
||
# 激活插件
|
||
yarn pm enable hello
|
||
# 禁用插件
|
||
yarn pm disable hello
|
||
# 删除插件
|
||
yarn pm remove hello
|
||
```
|
||
|
||
未实现
|
||
|
||
```bash
|
||
# 升级插件
|
||
yarn pm upgrade hello
|
||
# 发布插件
|
||
yarn pm publish hello
|
||
```
|
||
|
||
### `umi`
|
||
|
||
`app/client` 基于 [umi](https://umijs.org/) 构建,可以通过 `nocobase umi` 来执行其他相关命令。
|
||
|
||
```bash
|
||
# 生成开发环境所需的 .umi 缓存
|
||
yarn nocobase umi generate tmp
|
||
```
|
||
|
||
### `help`
|
||
|
||
帮助命令,也可以用 option 参数,`-h` 和 `--help`
|
||
|
||
```bash
|
||
# 查看所有 cli
|
||
yarn nocobase help
|
||
# 也可以用 -h
|
||
yarn nocobase -h
|
||
# 或者 --help
|
||
yarn nocobase --help
|
||
# 查看 db:sync 命令的 option
|
||
yarn nocobase db:sync -h
|
||
```
|