Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update minimum memory requirement for instance deployment (#371)

Fixes: #51

authored by

Paweł Wieczorek and committed by
GitHub
f68c741e bd3528d9

+4 -4
+1 -1
AGENTS.md
··· 30 30 31 31 ## Build and run 32 32 33 - Prerequisites: Node 24 (`.nvmrc`), Docker + Docker Compose v2, 16 GiB RAM recommended. 33 + Prerequisites: Node 24 (`.nvmrc`), Docker + Docker Compose v2, 8 GiB RAM recommended (running an instance requires 4 GiB, the rest will be used by development tools). 34 34 35 35 ```bash 36 36 # Start backing services (Postgres, ClickHouse, Scylla, Redis)
+2 -2
README.md
··· 31 31 * **Utility Services**: Database migrators, instrumentation, and proxy layers. 32 32 33 33 ## Getting Started 34 - For development on Coop it is recommended to: 34 + For deploying a Coop instance it is recommended to: 35 35 36 - - use a machine with 16 GiB RAM or more 36 + - use a machine with 4 GiB RAM or more (at least 8GiB is recommended for running development-related tasks, e.g. linting, tests) 37 37 - use Node 24 (run `nvm install && nvm use` so local matches `.nvmrc`) 38 38 39 39 and then follow the steps below:
+1 -1
docs/DEVELOPMENT.md
··· 8 8 - **Node.js 24** (use `nvm install && nvm use` so local matches `.nvmrc`) 9 9 - **npm** (included with Node.js) 10 10 - **Docker and Docker Compose** 11 - - **16 GB RAM** or more recommended 11 + - **4 GiB RAM** minimum for a bare instance, 8 GiB or more recommended for development-related tasks 12 12 13 13 ## Environment Setup 14 14