Updated readme

This commit is contained in:
Pablu23
2024-07-13 18:00:50 +02:00
parent b78948267e
commit 9c7fa69a37

View File

@@ -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?