Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Nocobase
Commits
58e2ac3f
Commit
58e2ac3f
authored
4 years ago
by
chenos
Browse files
Options
Download
Email Patches
Plain Diff
docs: installation instructions
parent
ef93a3c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+19
-0
README.md
README.zh-CN.md
+19
-0
README.zh-CN.md
with
38 additions
and
0 deletions
+38
-0
README.md
+
19
-
0
View file @
58e2ac3f
...
...
@@ -72,6 +72,25 @@ Database(Choose any one):
Installation
----------
Use only as a no-code platform
~~~
bash
# Create project directory
mkdir
my-nocobase-project
&&
cd
my-nocobase-project
# npm initialization
npm init
# Installing nocobase dependencies
npm i @nocobase/api @nocobase/app
# Copy and configure env, don't forget to change the database information
cp
-r
node_modules/@nocobase/api/.env.example .env
# Database initialization
npx nocobase db-init
# Start app
npx nocobase start
~~~
Want to participate in the development
~~~
shell
# You can use docker to start the database
docker-compose up
-d
postgres
...
...
This diff is collapsed.
Click to expand it.
README.zh-CN.md
+
19
-
0
View file @
58e2ac3f
...
...
@@ -97,6 +97,25 @@ Database:
安装 & 运行
----------
仅作为无代码平台使用
~~~
shell
# 创建项目目录
mkdir
my-nocobase-project
&&
cd
my-nocobase-project
# 初始化 npm
npm init
# 安装 nocobase 包
npm i @nocobase/api @nocobase/app
# 复制并配置 env,不要忘了修改数据库信息
cp
-r
node_modules/@nocobase/api/.env.example .env
# 数据库初始化
npx nocobase db-init
# 启动应用
npx nocobase start
~~~
想要参与项目开发
~~~
shell
git clone https://github.com/nocobase/nocobase.git
cd
nocobase
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help