-
Notifications
You must be signed in to change notification settings - Fork 0
Dev Setup
Finn edited this page Jul 4, 2025
·
3 revisions
This page explains how to run Yonky from source and build it into a standalone executable.
Before starting, make sure you have the following installed:
- Python 3.11+
-
pip(comes with Python) - Git (optional but recommended)
Required Python packages:
pip install pyqt5 pyinstaller-
Clone or download the repository:
git clone https://github.com/viik2k/yonky.git cd yonky -
Run the app:
python Yonky.py
This launches the GUI directly using your local Python environment.
You can package Yonky into a standalone .exe using pyinstaller:
pyinstaller --onefile --windowed --icon=icon.ico Yonky.pyAfter the build completes, the executable will be located in the dist/ folder.
Note: Make sure your
icon.ico,scripts/folder, andconfig.jsonare present in the same directory as the EXE for full functionality.
Yonky/
βββ Yonky.py
βββ icon.ico
βββ config.json
βββ scripts/
β βββ example.ps1
β βββ test.bat
- Make small changes and run
python Yonky.pyoften - Log outputs or use
print()for quick debugging - Always back up
config.jsonbefore testing write logic - Create a dedicated
dev/branch for experiments
Pull requests are welcome. Fork the repo, make your changes, and submit a PR with a clear description.