generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
38 lines (38 loc) · 882 Bytes
/
devcontainer-feature.json
File metadata and controls
38 lines (38 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "DuckDB CLI",
"id": "duckdb-cli",
"version": "1.1.1",
"description": "DuckDB is an in-process SQL OLAP database management system.",
"documentationURL": "https://github.com/eitsupi/devcontainer-features/tree/main/src/duckdb-cli",
"options": {
"version": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Select version of DuckDB CLI."
},
"extensions": {
"type": "string",
"default": "",
"description": "Comma separated list of DuckDB extensions to install.",
"proposals": [
"",
"httpfs,sqlite_scanner"
]
},
"communityExtensions": {
"type": "string",
"default": "",
"description": "Comma separated list of DuckDB Community Extensions to install.",
"proposals": [
"",
"quack"
]
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
}