From 42473a7747caa1542069a1f4ca0ae74703c94897 Mon Sep 17 00:00:00 2001 From: truemiller <31908788+truemiller@users.noreply.github.com> Date: Mon, 27 May 2024 11:31:37 +0100 Subject: [PATCH 1/3] chore: Update NodeJS version to 20.11 LTS and AntD to version 5 --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 049517ae..4043579a 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,13 @@ Pearl is an application used to run autonomous agents powered by the OLAS Networ ## Technologies Used - Electron -- NodeJS (20.11) -- AntD -- TypeScript +- NodeJS (20.11 LTS) +- AntD (^5) +- NextJS (^14) +- Javascript / TypeScript - Python (3.10) -- Poetry (1.7.1) -- Docker (24) +- Poetry (^1.7.1) +- Docker Engine ## Getting Started From 0a5789480019b1404520e4c850bfe0724e777445 Mon Sep 17 00:00:00 2001 From: truemiller <31908788+truemiller@users.noreply.github.com> Date: Mon, 27 May 2024 11:36:27 +0100 Subject: [PATCH 2/3] docs: Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4043579a..00141b22 100644 --- a/README.md +++ b/README.md @@ -213,7 +213,7 @@ There are two recommended options, choose one: [Tenderly](https://tenderly.co/) is a service with a plethora of useful blockchain development tools. The tool required here gives you the ability to **fork networks**. -Can you can also monitor all transactions, and fund your accounts with any token that you please. +You can also monitor all transactions, and fund your accounts with any token that you please. 1. Signup to [Tenderly](https://tenderly.co/), and select the plan you desire. **The Free plan should suffice for most users**. 2. Go to *Forks* under the *Development* tab -- in the left sidebar of your dashboard. From c3747cbdf983cd4c4b9f3a4957b5a814c4a62e74 Mon Sep 17 00:00:00 2001 From: truemiller <31908788+truemiller@users.noreply.github.com> Date: Mon, 27 May 2024 11:38:21 +0100 Subject: [PATCH 3/3] chore: Update README.md with package manager information --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 00141b22..8eb3551a 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,8 @@ nvm use --lts

Yarn

+Yarn is the package manager used for dependency management of the Electron app and NextJS frontend. + ```bash npm install --global yarn ``` @@ -105,6 +107,8 @@ brew install pipx

Poetry

+Poetry is used on the backend to install and manage dependencies, and create a virtual environment for the backend API. + ```bash pipx install poetry ```