-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvulcan.yaml
61 lines (61 loc) · 1.32 KB
/
vulcan.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: 'data-sharing'
description: A starter Vulcan project
version: 0.2.0
template:
provider: LocalFile
# Path to .sql files
folderPath: sqls
codeLoader: InMemory
artifact:
provider: LocalFile
serializer: JSON
# Path to build result
filePath: result.json
schema-parser:
reader: LocalFile
# Path to .yaml files
folderPath: sqls
document-generator:
specs:
- oas3
types:
- RESTFUL
auth:
enabled: true
options:
basic:
# Read users and passwords from a text file.
htpasswd-file:
path: passwd.txt # Path to the password file.
users: # (Optional) Add attributes for users
- name: james
attr:
role: employee
department: engineering
- name: harden
attr:
role: employee
department: sales
- name: michael
attr:
role: employee
department: sales
- name: cindy
attr:
role: employee
department: engineering
- name: rosa
attr:
role: employer
department: ceo
enforce-https:
enabled: false
response-format:
enabled: true
options:
default: json
formats:
- json
- csv
extensions:
duckdb: '@vulcan-sql/extension-driver-duckdb'