IDE Setup

Before setting up any IDE, you must have cloned the Moin-2.0 repository (https://github.com/moinwiki/moin), run "python quickinstall.py", created a wiki (usually "./m sample"), run the built-in server (./m run), and accessed a wiki page by pointing your browser to http://localhost:8080.

Py``Charm

Most MoinMoin developers use PyCharm, either the Professional Edition or the Free Community Edition. Choose one or the other and follow the PyCharm setup instructions.

The screenshots below are from Windows 10, using Python 3.10 and PyCharm Community Edition to debug Moin2 code. *nix setup is similar.

When setting up the Run/Debug Configurations, it is important to get the right values for the Script path, Parameters, Python interpreter, and Working directory. For general debugging of the moin2 code base those parameters should be similar to these:

pycharmA.PNG

If the parameters are correct, then the Run dropdown menu will show green icons for run and debug. If the only choice under the Run menu is Edit Configuration, then one of the parameters is wrong, try again. Note: PyCharm has a tendency to change the Working Directory field when other values are edited. Be sure it points to the repo root.

Once the configuration is correct, load a source program, set a break point and run the debugger. Point your browser to http://127.0.0.1:5000.

Debug a Moin Script

To debug one of the moin commands that are normally executed in a terminal window, follow the example below. You can view the list of moin commands by activating the virtual environment and doing a "moin --help".

pycharmB.PNG

Debug a Test

To debug a test, start by going to the PyCharm edit configuration view. Click the + in the upper left corner to show the popup list of configuration types. Choose Tox, and then follow the example below for other field values. Note the test starup will be rather slow, be patient.

pycharmC.PNG

MoinMoin: MoinMoin2/IdeSetup (last edited 2023-07-09 15:24:57 by RogerHaase)