Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.04 KB

CONTRIBUTE.md

File metadata and controls

40 lines (33 loc) · 1.04 KB

NEBULAGRAPH Dashboard Contributing Guide

Thank you for your interest in contributing to the NebulaGraph Dashboard. Please read this guide to learn how to develop and submit code to the repository.

本地部署

Development Environment

  • nodejs >= v16

Technology Stack

  • typescript
  • nodejs

Get Start in Local

  1. fork this repository to your personal github repository.
  2. clonerepository code
git clone https://github.com/vesoft-inc/nebula-dashboard.git
  1. install node modules
npm install
  1. Copy vendors/config-relaease.yaml to the devserver folder and rename it to config.yaml. And modify config.yaml so that the local web can connect to get prometheus data and know which NebulaGraph cluster to monitor.

  2. Start Project

npm run dev
  1. Visit http://localhost:7003 to view the local web page

How to commit

  1. Create Commit
git add .
git commit -m "your commit info"
git push [your self origin]
  1. create pull request