Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/szykol/potato

A simple http server 🥔
https://github.com/szykol/potato

cmake cpp googletest http server

Last synced: about 13 hours ago
JSON representation

A simple http server 🥔

Awesome Lists containing this project

README

        

# Potato
A simple http server 🥔

## How to build
This project uses CMake to build. Run build.sh to build Potato:

```
./build.sh
# Build with debug flag. This enables debugging symbols
./build.sh debug
```

## Run Potato
After sucessful build simply run the binary file:

```
build/potato
```

## Run tests
To run gtests:

```
build/test/Test
```
To run python EndToEnd tests:
```
python -m pip install pytest requests
py.test test/EndToEnd/EndToEndTest.py
```