nocobase/README.zh-CN.md

234 lines
6.2 KiB
Markdown
Raw Normal View History

2022-04-25 01:45:56 +00:00
[English](./README.md) | 简体中文
![](https://www.nocobase.com/images/demo/11.png)
NocoBase 是什么
----------
NocoBase 是一个极易扩展的开源无代码开发平台。
无需编程,使用 NocoBase 搭建自己的协作平台、管理系统,只需要几分钟时间。
官网https://cn.nocobase.com/
在线体验https://demo-cn.nocobase.com/new
为什么选择 NocoBase
----------
2022-04-29 07:39:42 +00:00
- **开源免费**
2022-04-27 10:22:41 +00:00
- 采用 Apache-2.0 许可协议,不限制商业使用
2022-04-25 01:45:56 +00:00
- 拥有全部代码,私有化部署,保障数据私有和安全
- 针对实际需求自由扩展开发
- 具备良好的生态支持
2022-04-29 07:39:42 +00:00
- **无代码能力强**
- 数据模型
- 使用文本、日期、数字、附件、选项、图标等数十种字段类型,以及一对一、一对多、多对多等各种关联关系,创建独立的数据模型
- 区块
- 使用表格、表单、看板、日历、详情等区块类型在页面内自由组合,来展示和操作数据
- 权限
- 基于角色控制用户的系统配置权限、数据操作权限和菜单访问权限
- 工作流
- 重复性的任务由自动化代替,减少人工操作, 提高效率。重要的事情需经过人工审批。
- 菜单
- 可以对菜单分组,支持添加页面和链接,支持无限级子菜单
- 操作
- 支持筛选、导出、添加、删除、修改、查看等操作对数据进行处理,可以扩展更多类型
- **对开发者友好**
2022-04-25 01:45:56 +00:00
- 微内核,灵活易扩展,具备健全的插件体系
- 基于 Node.js使用主流框架和技术包括 Koa、Sequelize、React、Formily、Ant Design 等
- 渐进式开发,上手难度低,对新人友好
- 不绑架、不强依赖,可任意组合使用或扩展,可用于现有项目中
NocoBase 架构
----------
2022-05-01 03:09:37 +00:00
![](https://www.nocobase.com/images/NocoBaseMindMapLite.png)
2022-04-25 01:45:56 +00:00
2022-05-01 03:09:37 +00:00
[点此查看完整图片](https://www.nocobase.com/images/NocoBaseMindMap.png)
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
联系
2022-04-25 01:45:56 +00:00
----------
2022-05-17 02:48:19 +00:00
如果你希望加入我们一起开发 NocoBase或者需要提供商业服务欢迎通过邮件联系我们hello@nocobase.com
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
或者添加我们的微信:
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
![](https://www.nocobase.com/images/wechat.png)
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
## 安装
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
NocoBase 支持 Docker 和 CLI 两种安装方法,如果你是新人推荐使用 Docker 安装。
### Docker (👍Recommended)
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
#### 0. 先决条件
2022-05-17 02:48:19 +00:00
⚡⚡ 请确保你已经安装了 [Docker](https://docs.docker.com/get-docker/)
2022-04-29 04:06:54 +00:00
2022-04-29 04:10:45 +00:00
#### 1. 将 NocoBase 下载到本地
2022-04-29 02:55:01 +00:00
使用 Git 下载(或直接[下载 Zip 包](https://github.com/nocobase/nocobase/archive/refs/heads/main.zip),并解压到 nocobase 目录下)
```bash
2022-04-29 02:55:01 +00:00
git clone https://github.com/nocobase/nocobase.git nocobase
```
2022-04-29 04:10:45 +00:00
#### 2. 选择数据库(任选其一)
2022-04-29 02:55:01 +00:00
支持 SQLite、MySQL、PostgreSQL 数据库
2022-04-29 02:55:01 +00:00
```bash
# SQLite
cd nocobase/docker/app-sqlite
# MySQL
cd nocobase/docker/app-mysql
# PostgreSQL
cd nocobase/docker/app-postgres
```
2022-04-29 04:10:45 +00:00
#### 3. 安装并启动 NocoBase
安装过程可能需要等待几十秒钟
```bash
2022-04-29 02:55:01 +00:00
# 在后台运行
$ docker-compose up -d
# 查看 app 进程的情况
$ docker-compose logs app
app-sqlite-app-1 | nginx started
app-sqlite-app-1 | yarn run v1.22.15
app-sqlite-app-1 | $ cross-env DOTENV_CONFIG_PATH=.env node -r dotenv/config packages/app/server/lib/index.js install -s
app-sqlite-app-1 | Done in 2.72s.
app-sqlite-app-1 | yarn run v1.22.15
app-sqlite-app-1 | $ pm2-runtime start --node-args="-r dotenv/config" packages/app/server/lib/index.js -- start
app-sqlite-app-1 | 2022-04-28T15:45:38: PM2 log: Launching in no daemon mode
app-sqlite-app-1 | 2022-04-28T15:45:38: PM2 log: App [index:0] starting in -fork mode-
app-sqlite-app-1 | 2022-04-28T15:45:38: PM2 log: App [index:0] online
app-sqlite-app-1 | 🚀 NocoBase server running at: http://localhost:13000/
```
2022-04-29 04:10:45 +00:00
#### 4. 登录 NocoBase
使用浏览器打开 http://localhost:13000/ 初始化账号和密码是 `admin@nocobase.com``admin123`
2022-05-17 02:48:19 +00:00
### CLI
#### 0. 先决条件
请确保你已经安装了 Node.js 12.x 或以上版本,如果你没有安装 Node.js 可以从官网下载并安装最新的 LTS 版本。如果你打算长期与 Node.js 打交道,推荐使用 nvmWin 系统可以使用 nvm-windows )来管理 Node.js 版本。
```bash
$ node -v
v16.13.2
```
推荐使用 yarn 包管理器。
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
```bash
$ npm install --global yarn
$ yarn -v
1.22.10
```
由于国内网络环境的原因,强烈建议你更换国内镜像。
```bash
$ yarn config set registry https://registry.npmmirror.com/
$ yarn config set sqlite3_binary_host_mirror https://npmmirror.com/mirrors/sqlite3/
```
最后,请确保你已经配置并启动所需数据库,数据库支持 SQLite无需安装启动、MySQL、PostgreSQL。
#### 1. 创建 NocoBase 项目
```bash
# SQLite
yarn create nocobase-app my-nocobase-app -d sqlite
# MySQL
yarn create nocobase-app my-nocobase-app -d mysql \
2022-05-17 02:48:19 +00:00
-e DB_HOST=localhost \
-e DB_PORT=3356 \
-e DB_DATABASE=nocobase \
-e DB_USER=nocobase \
-e DB_PASSWORD=nocobase
# PostgreSQL
yarn create nocobase-app my-nocobase-app -d postgres \
2022-05-17 02:48:19 +00:00
-e DB_HOST=localhost \
-e DB_PORT=5432 \
-e DB_DATABASE=nocobase \
-e DB_USER=nocobase \
-e DB_PASSWORD=nocobase
2022-05-17 02:48:19 +00:00
```
#### 2. 切换目录
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
```bash
2022-04-25 01:45:56 +00:00
cd my-nocobase-app
2022-05-17 02:48:19 +00:00
```
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
#### 3. 安装依赖
2022-04-26 08:12:48 +00:00
2022-05-17 02:48:19 +00:00
📢 由于网络环境、系统配置等因素影响,接下来这一步骤可能需要十几分钟时间。
2022-05-17 02:48:19 +00:00
```bash
yarn install
```
#### 4. 安装并启动 NocoBase
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
```bash
2022-05-17 07:16:33 +00:00
yarn nocobase install --lang=zh-CN
2022-04-25 01:45:56 +00:00
yarn start
2022-05-17 02:48:19 +00:00
```
#### 5. 登录 NocoBase
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
使用浏览器打开 http://localhost:13000/ 初始化账号和密码是 `admin@nocobase.com``admin123`
2022-04-25 01:45:56 +00:00
2022-05-17 02:48:19 +00:00
## 贡献
2022-04-25 01:45:56 +00:00
- Fork 源代码到自己的仓库
- 修改源代码
- 提交 Pull Request
2022-05-17 02:48:19 +00:00
### 下载项目
2022-04-25 01:45:56 +00:00
```bash
# 替换为自己的仓库地址
git clone https://github.com/nocobase/nocobase.git
cd nocobase
cp .env.example .env
yarn install
```
2022-05-17 02:48:19 +00:00
### 应用开发与测试
2022-04-25 01:45:56 +00:00
```bash
2022-05-17 07:16:33 +00:00
# 安装
yarn nocobase install --lang=zh-CN
# 启动应用
yarn start
2022-05-17 02:48:19 +00:00
# 运行所有测试
yarn test
# 运行文件夹下所有测试文件
yarn test <dir>
# 运行单个测试文件
yarn test <file>
2022-04-25 01:45:56 +00:00
```
2022-05-17 02:48:19 +00:00
### 文档预览
2022-04-25 01:45:56 +00:00
```bash
2022-05-17 02:48:19 +00:00
# 启动文档
yarn doc --lang=zh-CN
yarn doc --lang=en-US
2022-04-25 01:45:56 +00:00
```
2022-05-16 13:32:42 +00:00
2022-05-17 02:48:19 +00:00
文档在 docs 目录下,遵循 Markdown 语法
2022-05-16 13:32:42 +00:00
2022-05-17 02:48:19 +00:00
```bash
|- /docs/
|- en-US
|- zh-CN
```