From 9c7fa69a3767dcd93e629eb374bd70158d19c85d Mon Sep 17 00:00:00 2001 From: Pablu23 Date: Sat, 13 Jul 2024 18:00:50 +0200 Subject: [PATCH] Updated readme --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index be1765c..0b90460 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,30 @@ # Http Router which is supposed to be similar to the standard Golang Router +## Dependencies +c++20 +make for building + +## How to build +Run Example server implemented in main.cpp +``` +make run +``` + +Build static library +``` +make +``` + +Install library and header files (Possibly unsafe, could overwrite existing headers or libraries) +``` +sudo make install +``` + +Remove installed library and header files (Also unsafe for the same reasons) +``` +sudo make remove +``` + +## Todo list Todos: - Routing to Tree instead of map - Cmake maybe?