The V2V Database Engine is designed to be portable and easy to install across Windows, Linux, and macOS.
- Download the latest
v2vdb-windows.exefrom the Releases page. - Place the executable in any folder.
- Open a terminal (CMD or PowerShell) in that folder.
- Run:
(Note: The binary is standalone and does not require additional DLLs).
v2vdb-windows.exe
- Download the
v2vdb-linuxbinary from the Releases page. - Grant execution permissions:
chmod +x v2vdb-linux
- Run the database:
./v2vdb-linux
- Download the
v2vdb-macosbinary from the Releases page. - Grant execution permissions:
chmod +x v2vdb-macos
- Run the database:
./v2vdb-macos
Once installed, you can keep your database engine up to date without manual downloads:
- Open the interactive shell.
- Type
update. - The system will automatically check for the latest version, download the new binary, and restart the application for you.
The default credentials for the interactive shell are:
- Username:
admin - Password:
admin
If you prefer to build the project yourself:
- Ensure you have
CMakeand aC++17compiler installed. - Run:
cmake -B build cmake --build build --config Release