-
Notifications
You must be signed in to change notification settings - Fork 5
/
_auritus.yml
55 lines (50 loc) · 1.42 KB
/
_auritus.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
# theme
style:
theme: paper # from: https://rstudio.github.io/shinythemes/
font: Raleway # google font
chart_theme: auritus # echarts4r theme, from: https://echarts4r.john-coene.com/articles/themes
inverse: false # Whether to use inverse navbar (Bootstrap 3)
# your webhose token
# free @ webhose.io
token: "fd17174d-53ab-49d7-b19a-3351220490e7"
# minimum setup = 1 query
# each query MUST have an id and a search
queries:
- query:
- id: 1
- name: "Wine Brands"
- search: '("pinot$" OR "sauvignon$" OR "chardonnay$" OR "merlot$" OR "shiraz$" OR "cabernet$" OR "riesling$" OR "malbec$" OR "zinfandel$" OR "gewürztraminer$" OR "muscat$" OR "sémillon$") AND ("wine$" OR "wines$" OR "champagne$") is_first:true language:english spam_score:<=0.8'
# segments to categorise your data
# regex:
# | => OR
# & => AND
segments:
- segment:
- query: 1
- name: "Rosé"
- regex: "Rosé|rosé"
- segment:
- query: 1
- name: "White"
- regex: "White|white"
- segment:
- query: 1
- name: "Red"
- regex: "red|Red"
- segment:
- query: 1
- name: "Bubbles"
- regex: "bubbles|Bubbles|champagne|Champgane|mousseux|Mousseux"
# analytics to track site usage
tracking:
ganalytics: "UA-12345-6"
# database
# must include type
# must include dbname
# Any other option to pass to DBI::dbConnect
database:
type: "PostgreSQL"
dbname: "articles"
host: "localhost"
user: "jcoe"
password: ""