aboutsummaryrefslogtreecommitdiffstats
path: root/docs/versioned_docs/version-v0.19.0/07-Development/04-architecture.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/versioned_docs/version-v0.19.0/07-Development/04-architecture.md')
-rw-r--r--docs/versioned_docs/version-v0.19.0/07-Development/04-architecture.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/versioned_docs/version-v0.19.0/07-Development/04-architecture.md b/docs/versioned_docs/version-v0.19.0/07-Development/04-architecture.md
new file mode 100644
index 00000000..5a864034
--- /dev/null
+++ b/docs/versioned_docs/version-v0.19.0/07-Development/04-architecture.md
@@ -0,0 +1,9 @@
+# Architecture
+
+![Architecture Diagram](/img/architecture/arch.png)
+
+- Webapp: NextJS based using sqlite for data storage.
+- Workers: Consume the jobs from sqlite based job queue and executes them, there are three job types:
+ 1. Crawling: Fetches the content of links using a headless chrome browser running in the workers container.
+ 2. OpenAI: Uses OpenAI APIs to infer the tags of the content.
+ 3. Indexing: Indexes the content in meilisearch for faster retrieval during search.