https://github.com/minuta18/cpp-http-server
Simple C++ HTTP Server. Currently in active dev
https://github.com/minuta18/cpp-http-server
c cpp http system-programming web
Last synced: 11 months ago
JSON representation
Simple C++ HTTP Server. Currently in active dev
- Host: GitHub
- URL: https://github.com/minuta18/cpp-http-server
- Owner: Minuta18
- Created: 2024-10-10T07:39:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-21T07:50:36.000Z (over 1 year ago)
- Last Synced: 2025-01-13T01:11:38.780Z (about 1 year ago)
- Topics: c, cpp, http, system-programming, web
- Language: C++
- Homepage:
- Size: 59.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to build
Download libraries and compiler:
```bash
sudo apt install cmake clang # For Ubuntu
sudo dnf install cmake clang # For Fedora
```
Build project:
```bash
cmake .
cmake --build .
```
To run you can use the following:
```bash
./Main
```