elasticsearch-based configurable generic appview for prototyping ideas
at main 2.3 kB view raw
1{ 2 "jetstream_url": "wss://jetstream2.us-west.bsky.network/subscribe", 3 "es_url": "http://localhost:9200", 4 "record_types": [ 5 "xyz.statusphere.status", 6 "com.example.test.esav", 7 "party.whey.ft.topic.post", 8 "party.whey.ft.topic.reaction", 9 "party.whey.ft.topic.moderation", 10 "party.whey.ft.forum.definition", 11 "party.whey.ft.forum.layout", 12 "party.whey.ft.forum.request", 13 "party.whey.ft.forum.accept", 14 "party.whey.ft.forum.category", 15 "party.whey.ft.user.profile" 16 ], 17 "index_name": "appview-poc", 18 "serve_port": "8370", 19 "index_fields": { 20 "party.whey.ft.topic.reaction": { 21 "subject": { 22 "id": "reactionSubject", 23 "type": "keyword" 24 }, 25 "reactionEmoji": { 26 "id": "reactionEmoji", 27 "type": "keyword" 28 } 29 }, 30 "party.whey.ft.topic.post": { 31 "text": { 32 "id": "text", 33 "type": "text" 34 }, 35 "title": { 36 "id": "title", 37 "type": "text" 38 }, 39 "reply.root.uri": { 40 "id": "root", 41 "type": "keyword" 42 }, 43 "reply.parent.uri": { 44 "id": "parent", 45 "type": "keyword" 46 }, 47 "forum": { 48 "id": "forum", 49 "type": "keyword" 50 } 51 }, 52 "party.whey.ft.forum.definition": { 53 "description": { 54 "id": "description", 55 "type": "text" 56 }, 57 "displayName": { 58 "id": "displayName", 59 "type": "text" 60 } 61 }, 62 "xyz.statusphere.status": { 63 "status": { 64 "id": "status", 65 "type": "keyword" 66 } 67 }, 68 "com.example.test.esav": { 69 "text": { 70 "id": "text", 71 "type": "text" 72 }, 73 "reply.parent.uri": { 74 "id": "reply.parent.uri", 75 "type": "keyword" 76 }, 77 "reply.root.uri": { 78 "id": "reply.root.uri", 79 "type": "keyword" 80 } 81 }, 82 "app.bsky.feed.post": { 83 "text": { 84 "id": "text", 85 "type": "text" 86 }, 87 "reply.parent.uri": { 88 "id": "reply.parent.uri", 89 "type": "keyword" 90 }, 91 "reply.root.uri": { 92 "id": "reply.root.uri", 93 "type": "keyword" 94 } 95 }, 96 "app.bsky.feed.like": { 97 "subject.uri":{ 98 "id": "subject.uri", 99 "type": "keyword" 100 } 101 } 102 } 103} 104 105