This is a simple HTTP server that server a index.html to the client.
- Unix Based System
- GCC C Compiler
- Web Browser
1 - After cloning the repository open your terminal and compile the server files
gcc server.c -o ./build/serverthis will compile the file to the build folder
2- Run the server
./build/server3 - Open the browser and go to localhost:8080, it should return something on the page
4 - That's it!