Skip to content
This repository has been archived by the owner on Jun 22, 2019. It is now read-only.

Latest commit

 

History

History
39 lines (30 loc) · 1.25 KB

CONTRIBUTING.md

File metadata and controls

39 lines (30 loc) · 1.25 KB

Contributing Guide

Thanks for your interest in dash-table-experiments! Here's a quick guide to contributing to this repo.

Also, if your company or organization like to sponsor or prioritize feature development, please reach out.

  1. Create an issue and discuss the problem and notify other contributors that you will be working on the issue

  2. Develop locally on a branch

$ git clone https://github.com/plotly/dash-table-experiments/
$ cd dash-table-experiments
$ git checkout -b your-feature
  1. Install packages and generate the bundle
$ npm install
$ npm run prepublish # generates the bundle.js file and a metadata.json

I personally use the file watcher entr in combination with the file searcher ag to do live-reloading:

$ ag -l --js | entr npm run prepublish
  1. Run an example locally To use the local assets instead of the ones on unpkg.com, you will need to set
app.scripts.config.serve_locally = True
app.css.config.serve_locally = True

Other things to note