elasticsearch-based configurable generic appview for prototyping ideas
1{
2 "jetstream_url": "wss://jetstream2.us-west.bsky.network/subscribe",
3 "es_url": "http://localhost:9200",
4 "record_types": ["xyz.statusphere.status", "com.example.test.esav"],
5 "index_name": "appview-poc",
6 "serve_port": "8370",
7 "index_fields": {
8 "xyz.statusphere.status": {
9 "status": {
10 "id": "status",
11 "type": "text"
12 }
13 },
14 "com.example.test.esav": {
15 "text": {
16 "id": "text",
17 "type": "text"
18 },
19 "reply.parent.uri": {
20 "id": "reply.parent.uri",
21 "type": "keyword"
22 },
23 "reply.root.uri": {
24 "id": "reply.root.uri",
25 "type": "keyword"
26 }
27 },
28 "app.bsky.feed.post": {
29 "text": {
30 "id": "text",
31 "type": "text"
32 },
33 "reply.parent.uri": {
34 "id": "reply.parent.uri",
35 "type": "keyword"
36 },
37 "reply.root.uri": {
38 "id": "reply.root.uri",
39 "type": "keyword"
40 }
41 },
42 "app.bsky.feed.like": {
43 "subject.uri":{
44 "id": "subject.uri",
45 "type": "keyword"
46 }
47 }
48 }
49}
50
51