Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions build.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@echo off
setlocal

echo ================================
echo 🔧 Creating virtual environment...
echo ================================
python -m venv venv

echo ================================
echo 🧠 Activating virtual environment...
echo ================================
call venv\Scripts\activate

echo ================================
echo 📦 Installing requirements + Nuitka...
echo ================================
pip install --upgrade pip
pip install -r requirements.txt
pip install nuitka

echo ================================
echo 🏗️ Building with Nuitka...
echo ================================
nuitka --standalone --onefile --windows-disable-console brainworkshop.py

echo.
echo ✅ Done! Find your EXE in the "dist" folder: dist\brainworkshop.exe
pause