From ff8900d7941b1f8452f93685569c82fe785481d1 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 10 May 2023 15:44:19 -0600 Subject: [PATCH] Install deps via pnpm --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 776b6b0..12faf3e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,9 @@ https://codeberg.org/calckey/calckey ## Debian Tested on Debian 11 (Stable/Bullseye). -Install from Debian repos: +Not using Docker or Elasticsearch. + +Install some dependencies from Debian repos: ``` apt update @@ -23,7 +25,6 @@ apt install build-essential curl python3 python-is-python3 postgresql \ apt install -t bullseye-backports redis ``` -Not using Docker or Elasticsearch. ## NodeJS This is dodgy, like "npm install". Calckey recommends using @@ -55,15 +56,17 @@ node -v ``` -# Download +# Download and Install ``` git clone https://codeberg.org/calckey/calckey cd calckey/ -``` -# Build +Install calckey NodeJS dependencies: ``` -foo +corepack enable +corepack prepare pnpm@latest --activate +pnpm i +# pnpm i --no-optional # without Tensorflow. Downloads it anyway. ```