mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 13:47:20 +00:00
Merge branch 'develop' into feat/pnpm
This commit is contained in:
55
packages/noco-docs/versioned_docs/version-0.109.7/050.engineering/030.development-setup.md
vendored
Normal file
55
packages/noco-docs/versioned_docs/version-0.109.7/050.engineering/030.development-setup.md
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
---
|
||||
title: "Development Setup"
|
||||
description: "How to set-up your development environment"
|
||||
---
|
||||
|
||||
## Clone the repo
|
||||
|
||||
```bash
|
||||
git clone https://github.com/nocodb/nocodb
|
||||
```
|
||||
|
||||
## Install dependencies
|
||||
|
||||
```bash
|
||||
# run from the project root
|
||||
pnpm bootstrap
|
||||
```
|
||||
|
||||
## Start Frontend
|
||||
|
||||
```bash
|
||||
# run from the project root
|
||||
pnpm start:frontend
|
||||
```
|
||||
|
||||
## Start Backend
|
||||
|
||||
```bash
|
||||
# run from the project root
|
||||
pnpm start:backend
|
||||
```
|
||||
|
||||
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`
|
||||
|
||||

|
||||
|
||||
## Accessing 'Easter egg' menu
|
||||
|
||||
Double click twice on empty space between `View list` & `Share` button to the left top of Grid view; following options become accessible
|
||||
1. Export Cache
|
||||
2. Delete Cache
|
||||
3. Debug Meta
|
||||
4. Toggle Beta Features
|
||||
|
||||

|
||||
|
||||
|
||||
Reference in New Issue
Block a user