Skip to content

Modifying Jam.py core code

Platipus edited this page Oct 15, 2024 · 2 revisions

Entry point for modifying Jam.py core

Regardless of using the Jam.py v5 or v7, the entry point for modifying the Jam.py core code is the Application Builder. The Builder resides within the source jam/builder folder and it is started as usual with:

./server.py

Open the web browser and visit:

127.0.0.1:8080/builder.html

to start the Application Builder. We can now open for example index.html file from Task Group.

index.html

Complete design of Application Builder web page is defined in the index.html file.

Here, we can see the template name for any parts of Builder application.

Code Modules

More importantly, we see the Client Module and Server Module for any application part, where all code is defined.

This is the starting point of modifying the Application Builder.

Clone this wiki locally