git clone https://github.com/Netflix/conductor.git
2.启动本地服务器
2.1方法一:
安装gradle;(首次安装)
cd server
../gradlew server(源码编译)
2.2方法二:
根目录下执行:./gradlew build(首次运行,源码编译)
执行完成后conductor/server/build/lib下多了一个jar
运行jar:java –jar conductor-server-VERSION-all.jar
启动成功后访问http://localhost:8080/ Swagger APIs
3.启动UI服务器
3.1安装node.js(因为gulp基于nodejs)
官网https://nodejs.org/en/ 下载系统信息选择对应版本(.msi文件)
3.2安装cnpm
npm install cnpm -g --registry=https://registry.npm.taobao.org
3.3安装全局gulp
cnpm install gulp –g
3.4 cd conductor/ui
3.5 npm install gulp –save-dev(首次安装)
3.6 npm install –save-dev(首次安装)
3.7 gulp watch等待构建
3.8 打开http://localhost:3000 查看workflow状态监控界面