An open API service indexing awesome lists of open source software.

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

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
```