- 参考
二者没有太大差异。
LINUX编译、运行、测试lowcoder-CSDN博客
- 下载
git clone https://github.com/mousheng/lowcoder_CN
或
git clone https://gitcode.com/gh_mirrors/lo/lowcoder_CNcd lowcoder_CN
- 三个模块
node-service
api-service
client
每个模块都有自己的README.md。
- 配置mongo数据库(略)
- 配置redis(略)
- 编译、启动api-service
cd server/api-serviceexport JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64
if [ "$1" == "1" ]; thenmvn -DskipTests clean package
fiWORK_PATH=lowcoder-server/target
${JAVA_HOME}/bin/java \-Dpf4j.mode=development \-Dspring.profiles.active=lowcoder \-Dpf4j.pluginsDir=lowcoder-plugins \-jar ${WORK_PATH}/lowcoder-server-2.0.1-SNAPSHOT.jar
http://localhost:8080
- 编译、启动node-service
cd server/node-serviceif [ "$1" == "1" ]; thenyarn install
fiyarn dev
http://localhost:6060/
- 编译、启动client
cd clientyarn installLOWCODER_API_SERVICE_URL=http://localhost:8080 yarn start
http://localhost:8000/
界面为空,不知为何。