At first you need to create a Python venv & log into it.
virtualenv -p python3 env
source env/bin/activateInstall the Python requirements via pip
pip install -r docs-requirements.txtGo to the docs dir & create the docs
Look the YouTube Video for description how the quickstart work
cd docs
sphinx-quickstartIn /docs/example-settings.py is an example config with pre set the nice looking sphinx_rtd_theme
Edit /docs/javasphinx.sh the Vars
TITEL --> Your Project Name
PACKAGENAME --> Your Javapackage com.example.MyProject name, only if you don't have write it in the code.
SOURCE --> Path to the source like ../src/main/java/
To generate code execute /docs/javasphinx.sh
cd docs
./javasphinx.shAfter that you have your docs in mutiple formats :)
