Skip to content

Commit 6944cd2

Browse files
authored
Update README.md
1 parent 77b634e commit 6944cd2

File tree

1 file changed

+27
-15
lines changed

1 file changed

+27
-15
lines changed

docs/README.md

+27-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,34 @@
1-
# DuckDB Extension Template
2-
This repository contains a template for creating a DuckDB extension. The main goal of this template is to allow users to easily develop, test and distribute their own DuckDB extension. The main branch of the template is always based on the latest stable DuckDB allowing you to try out your extension right away.
1+
# DuckDB HTTP Server Extension
2+
This very experimental extension spawns an HTTP Server from within DuckDB serving query requests.
33

4-
## Getting started
5-
First step to getting started is to create your own repo from this template by clicking `Use this template`. Then clone your new repository using
6-
```sh
7-
git clone --recurse-submodules https://github.com/<you>/<your-new-extension-repo>.git
4+
### Extension Functions
5+
- `httpserve_start(host, port)`
6+
- `httpserve_stop()`
7+
8+
### Usage
9+
Start the HTTP server providing the `host` and `port` parameters
10+
```sql
11+
D SELECT httpserve_start('0.0.0.0',9999);
12+
┌─────────────────────────────────────┐
13+
│ httpserve_start('0.0.0.0', 9999) │
14+
varchar
15+
├─────────────────────────────────────┤
16+
│ HTTP server started on 0.0.0.0:9999
17+
└─────────────────────────────────────┘
818
```
9-
Note that `--recurse-submodules` will ensure DuckDB is pulled which is required to build the extension.
1019

11-
## Building
12-
### Managing dependencies
13-
DuckDB extensions uses VCPKG for dependency management. Enabling VCPKG is very simple: follow the [installation instructions](https://vcpkg.io/en/getting-started) or just run the following:
14-
```shell
15-
git clone https://github.com/Microsoft/vcpkg.git
16-
./vcpkg/bootstrap-vcpkg.sh
17-
export VCPKG_TOOLCHAIN_PATH=`pwd`/vcpkg/scripts/buildsystems/vcpkg.cmake
20+
#### Query
21+
Query the endpoint using curl GET/POST requests
22+
```bash
23+
# curl -X POST -d "SELECT 42 as answer" http://localhost:9999/query
24+
answer
25+
INTEGER
26+
[ Rows: 1]
27+
42
1828
```
19-
Note: VCPKG is only required for extensions that want to rely on it for dependency management. If you want to develop an extension without dependencies, or want to do your own dependency management, just skip this step. Note that the example extension uses VCPKG to build with a dependency for instructive purposes, so when skipping this step the build may not work without removing the dependency.
29+
30+
<br>
31+
2032

2133
### Build steps
2234
Now to build the extension, run:

0 commit comments

Comments
 (0)