- 參考
二者沒有太大差異。
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/
界面為空,不知為何。?