From c9759a3a796a0ab60cb03617ada9e0ce96b8b88d Mon Sep 17 00:00:00 2001 From: Johann150 Date: Mon, 1 Apr 2024 18:49:37 +0200 Subject: [PATCH] add a bit of guidance for startup --- READING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/READING.md b/READING.md index af92c4c1f..88331af98 100644 --- a/READING.md +++ b/READING.md @@ -7,6 +7,10 @@ Look further up in the section to find the "base path" it is relative to. All the backend code is in `/packages/backend/src`. +The backend is started via `index.ts` which in turn starts `boot/index.ts`. +In the "boot" code is where the process is forked from the main process into additional and separate worker and frontend processes. +If you look into your operating system's process overview or similar, you might be able to see that the processes rename themselves accordingly. + ### Database For connecting to the database an ORM (object–relational mapping) is used.