From 441d36f50d0aef00308bcda4d1e98a8af7ce3c82 Mon Sep 17 00:00:00 2001 From: Nemusy <95968788+nemusyy@users.noreply.github.com> Date: Fri, 21 Aug 2026 17:15:46 +0200 Subject: [PATCH 1/4] fixed min requirement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d056b05b..a1f11e41 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Orbit is designed to run on a small Linux server, but we recommend giving it eno | **CPU** | 2 cores | 2–4+ cores | | **RAM** | 2 GB | 4 GB+ | | **Storage** | 10 GB | 20 GB+ SSD | -| **Database** | PostgreSQL | PostgreSQL | +| **Database** | Any Prisma-compatible | PostgreSQL | | **Node.js** | 20+ | Latest supported LTS | | **OS** | Linux | Linux | From fa0bca832bee0d71462a811e483172ba601e5c1b Mon Sep 17 00:00:00 2001 From: Nemusy <95968788+nemusyy@users.noreply.github.com> Date: Fri, 21 Aug 2026 17:25:09 +0200 Subject: [PATCH 2/4] ok --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1f11e41..132e4b76 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Orbit is designed to run on a small Linux server, but we recommend giving it eno | **CPU** | 2 cores | 2–4+ cores | | **RAM** | 2 GB | 4 GB+ | | **Storage** | 10 GB | 20 GB+ SSD | -| **Database** | Any Prisma-compatible | PostgreSQL | +| **Database** | Any Prisma-compatible DB | PostgreSQL | | **Node.js** | 20+ | Latest supported LTS | | **OS** | Linux | Linux | From eca755f5431b748c55973279bc39adea68820e82 Mon Sep 17 00:00:00 2001 From: Nemusy <95968788+nemusyy@users.noreply.github.com> Date: Fri, 21 Aug 2026 17:36:30 +0200 Subject: [PATCH 3/4] ok Clarify database compatibility and installation requirements. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 132e4b76..20278284 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,9 @@ Orbit is designed to run on a small Linux server, but we recommend giving it eno | **Node.js** | 20+ | Latest supported LTS | | **OS** | Linux | Linux | +> [!NOTE] +> You cannot use MongoDB, as MongoDB's database interface is NoSQL, and Orbit was programmed to be in SQL-like interface (such as PostgresSQL), and therefore is not compatible with MongoDB. + > [!TIP] > **An SSD is strongly recommended.** Orbit's dependencies can consume a significant amount of disk space, particularly `node_modules`, and Next.js builds perform a considerable amount of disk I/O. We recommend having at least 20 GB of available storage for a comfortable installation. From 6e1ab85867085a43b268f4a60d17e0bd88f6a1f1 Mon Sep 17 00:00:00 2001 From: Nemusy <95968788+nemusyy@users.noreply.github.com> Date: Fri, 21 Aug 2026 17:38:42 +0200 Subject: [PATCH 4/4] r --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 20278284..fc4e0fe6 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ Orbit is designed to run on a small Linux server, but we recommend giving it eno | **Node.js** | 20+ | Latest supported LTS | | **OS** | Linux | Linux | -> [!NOTE] +> [!WARNING] > You cannot use MongoDB, as MongoDB's database interface is NoSQL, and Orbit was programmed to be in SQL-like interface (such as PostgresSQL), and therefore is not compatible with MongoDB. > [!TIP]