This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
wikicookbook/README.org

23 lines
676 B
Org Mode
Raw Permalink Normal View History

#+title: WikiCookBook
WikiCookBook is a simple graphical editor for creating MoinMoin wiki pages for recipes.
It is based on [[https://www.python.org][Python]], [[https://www.qt.io/][QT]] and [[https://www.riverbankcomputing.com/software/pyqt/intro][PyQt]].
2020-09-11 08:01:17 +02:00
* Building
2020-09-23 19:11:39 +02:00
** Microsoft Windows
2020-09-11 08:01:17 +02:00
Building in Microsoft Windows happens with pyinstaller. Here the complete process.
#+BEGIN_SRC shell
git clone git@git.mmk2410.org:mmk2410/wikicookbook
cd wikicookbook
python -m venv venv
.\venv\Scripts\activate.bat
pip install -r requirements.txt
.\venv\Scripts\pyinstaller.exe --onefile --windowed wikicookbook.py
#+END_SRC
The result can the be found in the =dist= directory.