Verodb is an in-memory SQL database implemented in C, designed for educational purposes. This project includes modules for querying, parsing SQL, and managing the database structure.
For Ubuntu/Debian-based distributions:
sudo apt update
sudo apt install cmake
For MacOS:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install cmake
First, clone the repository to your local machine:
git clone https://github.com/your-username/verodb.git
cd verodb
After cloning you need to create a build folder where all the builds of the monorepo will be saved.
mkdir build
cd build
Generate Build Files with CMake
cmake ..
Compile Project
make
Run the executable file
engine/verodb