https://github.com/gr3yknigh1/simple-http-server
Simple HTTP Server
https://github.com/gr3yknigh1/simple-http-server
c http-server
Last synced: over 1 year ago
JSON representation
Simple HTTP Server
- Host: GitHub
- URL: https://github.com/gr3yknigh1/simple-http-server
- Owner: gr3yknigh1
- Created: 2022-11-02T03:30:25.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-04T10:42:52.000Z (over 3 years ago)
- Last Synced: 2025-02-07T13:17:40.224Z (over 1 year ago)
- Topics: c, http-server
- Language: C
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple HTTP Server
## Requirements
- GCC compilator
- GNU Make
## Run
1. Build project
```shell
make
```
2. Run
```shell
make run
```
OR
```shell
./build/main
```
3. Rebuild and run
```shell
make all run
```
## Clean
In case if you want to clean your project from generated object files and executables run:
```shell
make clean
```