Browse Source

Update 'README.md'

天问 1 year ago
parent
commit
8c770f75b8
1 changed files with 44 additions and 0 deletions
  1. 44 0
      README.md

+ 44 - 0
README.md

@@ -1,2 +1,46 @@
 # apitable
 
+团队实时协作table编辑,类似于excel协作。提供行列权限,模板。
+
+## Usage
+
+安装docker,docker-compser
+
+```
+# 体验
+sudo docker run -d -v ${PWD}/.data:/apitable -p 80:80 --name apitable apitable/all-in-one:latest
+
+# 纯净镜像
+curl https://apitable.github.io/install.sh | bash
+
+```
+
+## Develop
+
+
+
+```
+make dataenv 
+
+make install 
+
+#start backend-server
+
+make run # enter 1  
+
+# and then switch to a new terminal
+# start room-server
+
+make run # enter 2
+
+# and then switch to a new terminal
+# start web-server
+
+make run # enter 3
+
+# and then switch to a new terminal
+# start databus-server
+
+make run # enter 4
+
+```