Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgebay/cpp-driver-sut
https://github.com/jorgebay/cpp-driver-sut
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jorgebay/cpp-driver-sut
- Owner: jorgebay
- Created: 2015-02-26T10:50:06.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-23T18:09:50.000Z (almost 10 years ago)
- Last Synced: 2024-05-04T00:06:43.373Z (8 months ago)
- Language: C
- Size: 66.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C/C++ Driver SUT
## Web server configuration
This SUT requires a web server that support FastCGI.
### Nginx configuration
```
server {
listen :8080;location ~ /.* {
fastcgi_pass unix: ;
fastcgi_keep_conn on;
include fastcgi_params;
}
}
```## To build
Requires the cassandra-cpp-driver-dev and libuv-dev packages.
```
make
```## To run
```bash
./sut
```