Skip to content

hyperdiv/hyperdiv-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hyperdiv Docs

This repo contains the Hyperdiv documentation app, which is written in Hyperdiv.

Docs Gif

Opening the Documentation App

The documentation app ships with Hyperdiv when installing Hyperdiv from PyPI. After installing Hyperdiv, run this command to open the docs app in a browser tab:

hyperdiv docs

For Developers

After cloning the Hyperdiv repo and installing its dependencies, you can simply clone this repo and run its start.py script within Hyperdiv's Poetry virtualenv:

cd hyperdiv
# Install Python dependencies
poetry install
# Install frontend dependencies
cd frontend
npm install
npm run build
cd ..
# Enter the virtualenv
poetry shell
# Run the docs app in the virtualenv
cd ../hyperdiv-docs
python start.py