mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-02 02:57:23 +00:00
@@ -1,51 +0,0 @@
|
||||
---
|
||||
title: "Development Setup"
|
||||
description: "How to set-up your development environment"
|
||||
---
|
||||
|
||||
## Clone the repo
|
||||
|
||||
```bash
|
||||
git clone https://github.com/nocodb/nocodb
|
||||
# change directory to the project root
|
||||
cd nocodb
|
||||
```
|
||||
|
||||
## Install dependencies
|
||||
|
||||
```bash
|
||||
# run from the project root
|
||||
# this command will install the dependencies including sdk build
|
||||
pnpm bootstrap
|
||||
```
|
||||
|
||||
## Start Frontend
|
||||
|
||||
```bash
|
||||
# run from the project root
|
||||
pnpm start:frontend
|
||||
# runs on port 3000
|
||||
```
|
||||
|
||||
## Start Backend
|
||||
|
||||
```bash
|
||||
# run from the project root
|
||||
pnpm start:backend
|
||||
# runs on port 8080
|
||||
```
|
||||
|
||||
Any changes made to frontend and backend will be automatically reflected in the browser.
|
||||
|
||||
## Enabling CI-CD for Draft PR
|
||||
|
||||
CI-CD will be triggered on moving a PR from draft state to `Ready for review` state & on pushing changes to `Develop`. To verify CI-CD before requesting for review, add label `trigger-CI` on Draft PR.
|
||||
|
||||
## Accessing CI-CD Failure Screenshots
|
||||
|
||||
For Playwright tests, screenshots are captured on the tests. These will provide vital clues for debugging possible issues observed in CI-CD. To access screenshots, Open link associated with CI-CD run & click on `Artifacts`
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: "Development setup"
|
||||
title: "Development Setup"
|
||||
description: "How to set-up your development environment"
|
||||
tags: ['Engineering']
|
||||
---
|
||||
@@ -16,7 +16,8 @@ cd nocodb
|
||||
|
||||
```bash
|
||||
# run from the project root
|
||||
pnpm i
|
||||
# this command will install the dependencies including sdk build
|
||||
pnpm bootstrap
|
||||
```
|
||||
|
||||
## Start Frontend
|
||||
|
||||
Reference in New Issue
Block a user