File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -209,5 +209,11 @@ __marimo__/
209209
210210tmp
211211temp
212- * .json
212+ # Ignore only temporary or specific JSON files, not all JSON files
213+ tmp /* .json
214+ temp /* .json
215+ data /
216+ config.json
217+ chat_history.json
218+ # Add more specific patterns as needed
213219* .mp3
Original file line number Diff line number Diff line change 1+ @ echo off
2+ chcp 65001 > nul
3+ echo ========= [PVenus] 开始打包 main.py =========
4+
5+ :: 检查 Nuitka 是否已安装
6+ where nuitka > nul 2 > nul
7+ if %errorlevel% neq 0 (
8+ echo [错误] 未安装 Nuitka,请运行 pip install nuitka 后重试!
9+ pause
10+ exit /b
11+ )
12+
13+ :: 开始打包
14+ nuitka GUI/mainGUI.py ^
15+ --standalone ^
16+ --onefile ^
17+ --windows-disable-console ^
18+ --enable-plugin=tk-inter ^
19+ --output-dir=build ^
20+ --show-progress
21+
22+ echo .
23+ echo ========= ✅ 打包完成!请查看 build\main.exe =========
24+ pause
You can’t perform that action at this time.
0 commit comments