compliance/build.sh
gongwenxin df90a5377f mvp
2025-06-16 14:49:49 +08:00

10 lines
227 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# PyInstaller打包脚本
# 确保安装了PyInstaller
# pip install pyinstaller
# 打包应用
pyinstaller --onefile --add-data "static:static" flask_app.py
echo "打包完成可执行文件位于dist目录"