PETEP is built on Java and uses JavaFX for graphical user interface, which allows it to run on various platforms. However, since JavaFX is no longer part of Java JDK, you have to download appropriate PETEP distribution that contains JavaFX with runtime libraries for your operating system or download these libraries yourselves.
PETEP application directory has the following structure:
To run PETEP, simply download appropriate distribution and extract its contents on your machine. Then run PETEP launch script and PETEP will start.
You can also specify project you want to run by specifying it as first parameter.
# Linux, Mac
./petep.sh [project_path]
# Windows
petep.bat [project_path]
PETEP can run without GUI using existing project configuration:
# Linux, Mac
./petep.sh [project_path] --nogui
# Windows
petep.bat [project_path] --nogui
To run PETEP manually, you have to specify classpath and main class:
java -cp lib/* com.warxim.petep.Main