-
Notifications
You must be signed in to change notification settings - Fork 2
/
example_config.yml
70 lines (70 loc) · 1.26 KB
/
example_config.yml
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
62
63
64
65
66
67
68
69
70
---
links:
transcribe:
module: links.transcribe
ingress-lists: []
egress-lists: []
options:
transcribe_options:
model_size: base
output_options:
- vendor
script:
module: links.script
ingress-lists: []
egress-lists: []
summary:
module: links.summary
ingress-lists: []
egress-lists: []
tag:
module: links.tag
ingress-lists: []
egress-lists: []
options:
tags:
- Geddy
- Alex
- The Professor
webhook:
module: links.webhook
options:
webhook-urls:
- notreal.com
storages:
mongo:
module: storage.mongo
options:
MONGO_URL: mongodb://localhost:27017/
database: conserver
collection: vcons
postgres:
module: storage.postgres
options:
user: thomashowe
password: postgres
host: localhost
port: '5432'
database: postgres
s3:
module: storage.s3
options:
aws_access_key_id: some_key
aws_secret_access_key: some_secret
aws_bucket: some_bucket
chains:
sample_chain:
links:
- transcribe
- script
- summary
- tag
ingress_lists:
- test_list
storages:
- mongo
- postgres
- s3
egress_lists:
- test_output
enabled: 1