mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-01 23:48:33 +00:00
714 B
714 B
Setup
Setting up dev environment
-
Clone
nocodb/nocodbGitHub repo and checkout tofeat/v2branchgit clone https://github.com/nocodb/nocodb cd nocodb -
Navigate to
nocodb-sdkpackage folder, install and build the packagecd packages/nocodb-sdk npm install npm run build
Running backend
# Navigate to `nocodb` package and install dependencies
cd packages/nocodb
npm install
# requires sqlite3
npm run watch:run
# if you have mysql on localhost (set its password as password)
# npm run watch:run:mysql
Running frontend
# Navigate to `nc-gui` package and install dependencies
cd packages/nc-gui
npm install
npm run dev