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-api
Initialize and Update vcpkg Submodule
git submodule update --init --recursive
Build the Project
mkdir build
cd build
cmake ..
make
Building the project should get all the vcpkg dependencies, generate documentation and of course build the app. Run the app after building.
./cpp-todo-api
The documentation should be available at the root (localhost:8080/)