Documentation Notes
This directory contains the Sphinx documentation source for Open Kinetics Predictor.
Application setup
Requirements:
Python 3.11 or newer.
Docker and Docker Compose for the normal development stack.
DJANGO_SECRET_KEYset in your environment or.envfile.
Generate a local secret key if needed:
openssl rand -hex 50
Start the local stack:
cp .env.example .env
docker compose up -d --build
The web interface runs at http://localhost:3000 in the development stack,
and backend API routes are served by Django under /api/.
Build these docs locally
cd docs
python -m pip install -r requirements.txt
make clean html
Open docs/_build/html/index.html in your browser.
Where to start
OpenKinetics Predictor introduces the platform.
Supported Methods lists prediction targets and engines.
Contributing a New Prediction Method explains how to add a new prediction method.
API Reference contains generated Python API pages.