🏁Requirements

List of required or recommended versions of various projects used

Handshake Server

  • Python - 3.11 (Recommended) and 3.12 (Supported too)

  • Min SQLite Version: 3.45.0, check through sqlite3 --version

Bash script to install SQLite Version 3.45.0

# required to support: https://www.sqlite.org/json1.html#jptr
# installing build: 3.45.0
wget https://www.sqlite.org/2024/sqlite-autoconf-3450000.tar.gz
# unzipping build
tar -xvzf sqlite-autoconf-3450000.tar.gz

# below steps are for installing the build in /usr/local/bin
cd sqlite-autoconf-3450000 || exit
./configure
make
sudo make install

# remove the previous version
sudo apt-get remove -y --auto-remove sqlite3

Handshake-Nodejs-Reporters

(Dashboard too)

  • Node >= 18 (Supported), (~= 20 LTS Supported)

    • It could support 21 or 22, but it is not tested. happy to support if required.

Last updated