Skip to content

Latest commit

 

History

History
58 lines (46 loc) · 1.15 KB

README.md

File metadata and controls

58 lines (46 loc) · 1.15 KB

Webserv

This project is about writing an HTTP server and to be able to test it with an actual browser. HTTP is one of the most used protocols on the internet. Knowing its arcane will be useful, even if you won’t be working on a website.

Installation

git clone https://github.com/Dutesier/webserv
cd webserv

Compilation

# In webser root dir
mkdir build/
cd build/
cmake -D test=ON ..
make
./webserv
## Running Unit Tests
./tests/webserv_test