Analytics overview
flowchart TD
s1[import current state into postgres]
s2[process in postgres with dbt]
s3[update spellcheck queue table in postgres]
s4[trigger spellcheck processing]
s5[iteratively send items from spellcheck queue to languagetool container]
s6[process spellcheck errors in postgres with dbt]
style s4 stroke-width:2px, stroke-dasharray: 5 5
s1 --> s2
s2 --> s3
s3 -. poll finished .-> s4
s4 --> s5
s5 --> s6