diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..22eb6b0 --- /dev/null +++ b/build.bat @@ -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