From 52e8084be0d988e5164c997b9a8097f37a89c71b Mon Sep 17 00:00:00 2001 From: River Kelly <65210753+RK311y@users.noreply.github.com> Date: Tue, 24 May 2022 12:16:02 -0600 Subject: [PATCH 1/3] Add 'Build SDK' documentation to 'Development Setup' --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index b5be11840a..ee7cd7c675 100644 --- a/README.md +++ b/README.md @@ -291,6 +291,14 @@ git clone https://github.com/nocodb/nocodb cd nocodb ``` +## Build SDK + +```shell +cd packages/nocodb-sdk +npm install +npm run build +``` + ## Running Backend locally ```shell From 6029a2a1b3f5d7470ad61ba7a6b763926c6497a2 Mon Sep 17 00:00:00 2001 From: River Kelly <65210753+RK311y@users.noreply.github.com> Date: Tue, 24 May 2022 12:17:15 -0600 Subject: [PATCH 2/3] Add 'Build SDK' to table of contents --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ee7cd7c675..5c24596826 100644 --- a/README.md +++ b/README.md @@ -230,6 +230,7 @@ Access Dashboard using : [http://localhost:8080/dashboard](http://localhost:8080 * [Environment variables](#environment-variables) - [Development Setup](#development-setup) * [Cloning the Project](#cloning-the-project) + * [Build SDK](#build-sdk) * [Running Backend locally](#running-backend-locally) * [Running Frontend locally](#running-frontend-locally) * [Running Cypress tests locally](#running-cypress-tests-locally) From 1196cdc19f466d31107657b8f330fcc0c17e749b Mon Sep 17 00:00:00 2001 From: River Kelly <65210753+RK311y@users.noreply.github.com> Date: Tue, 24 May 2022 12:17:49 -0600 Subject: [PATCH 3/3] Fix Github URL in Run.md --- Run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Run.md b/Run.md index 4ee30e0905..1cd566a441 100644 --- a/Run.md +++ b/Run.md @@ -4,7 +4,7 @@ - Clone `nocodb/nocodb` GitHub repo and checkout to `feat/v2` branch ```sh - git clone https://github.com/nocodb/nc + git clone https://github.com/nocodb/nocodb cd nocodb ```