Appearance
开发者指南
注意:需要将多个项目都统一放一个文件夹下 
1.文档官网
克隆代码
shell
git clone https://github.com/fineplus/fineflow-home.git
cd fineflow-home
npm install预览
shell
npm run doc:dev编译
shell
npm run doc:build2.fineflow前端
克隆代码
shell
git clone https://github.com/fineplus/fineflow.git
cd fineflow
npm install预览
shell
npm run dev前端编译
shell
npm run build编译给tauri
shell
npm run build-for-tauri3.fineflow-tauri
克隆代码
shell
git clone https://github.com/fineplus/fineflow-tauri.git
cd fineflow-tauri
npm install预览
先在fineflow项目使用npm run build-for-tauri打包得到tauri-dist 用tauri-dist内的index.html文件和assets文件替换到fineflow-tauri的src文件夹下
shell
npm tauri dev编译为exe
shell
npm tauri build4.fineflow-api
克隆代码
shell
git clone https://github.com/fineplus/fineflow-api.git
cd fineflow-api
pip install -r requirements.txt启动
shell
python main.py打包exe
shell
pip install pyinstaller
pyinstaller.exe -F .\main.py --onefile --icon logo.png --name fineflow-api一次打包所有工程(建议)
shell
pip install pyinstaller
python make_utils.py