Dogelog Player Runtime

1 GIT Access
2 JavaScript Command Line
3 Python Command Line
4 Java Command Line

1 GIT Access

For binary files and source code initially:

git clone https://www.dogelog.ch/dogelog/.git

For updates as desired:

cd dogelog
git pull

2 JavaScript Command Line

To run the Dogelog Player for JavaScript top-level:

cd dogelog
node player/canned/dogelog.mjs

Alternative to Node, one can use for example Bun.

3 Python Command Line

To run the Dogelog Player for Python top-level:

cd dogelog
pypy3 playerpy/canned/dogelog.py

Alternative to PyPy, one can use for example CPython.

4 Java Command Line

To run the Dogelog Player für Java top-level:

cd dogelog
java --add-opens java.base/jdk.internal.misc=ALL-UNNAMED \
-cp playerj/canned Dogelog

Alternative to Java, one can use for example GraalVM.