/database

A simple database

Primary LanguageC++MIT LicenseMIT

Database

The start of a simple database in C++

Building & Setup

The following document how to build and set up the project.

Build Pre-requisites

gRPC pre-reqs

More on gRPC here and here

Building

Make sure you have at least cmake version 3.21.1 installed. Create a build folder:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..

Build the executable:

cmake --build .

Done!

If you want to build in debug mode, simply change the build type from Release to Debug when configuring cmake.

Tutorials

Cmake gRPC C++