mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-09 13:06:54 +03:00
* prework * add tooltips * . * Update build.yaml * remove tooltip link and embed it directly * embedd tooltip directly * . * . * . * . * . * . * . * . * . * . * fix disabled tooltips * fix disabled tooltips * renamed Parameter in UI, added units, fixed labels * . * . * . --------- Co-authored-by: CaCO3 <caco@ruinelli.ch>
16 lines
415 B
Bash
Executable File
16 lines
415 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Checkout the documentation reposo we can extract the parameter documentation
|
|
if [ -d "AI-on-the-edge-device-docs" ] ; then
|
|
# Repo already checked out, pull it
|
|
cd AI-on-the-edge-device-docs
|
|
git checkout main
|
|
git pull
|
|
cd ..
|
|
else
|
|
# Repos folde ris missing, clone it
|
|
git clone https://github.com/jomjol/AI-on-the-edge-device-docs.git
|
|
fi
|
|
|
|
python generate-param-doc-tooltips.py
|