This is a simple Todo API written in C++. It allows you to manage your tasks easily. Can be connected to a todo app client.
Follow these instructions to get a copy of the project up and running on your local machine.
- cmake
- g++
- doxygen
Clone the Repository
git clone https://github.com/teriyakigod/cpp-todo-api.git
cd cpp-todo-apiInitialize and Update vcpkg Submodule
git submodule update --init --recursiveBuild the Project
mkdir build
cd build
cmake ..
makeBuilding the project should get all the vcpkg dependencies, generate documentation and of course build the app. Run the app after building.
./cpp-todo-apiThe documentation should be available at the root (localhost:8080/)