Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.32 KB

CONTRIBUTING.md

File metadata and controls

50 lines (33 loc) · 1.32 KB

Building and releasing

How to build the Azure Data Explorer (ADX) data source plugin locally

Dependencies

Make sure you have the following dependencies installed first:

Frontend

  1. Install dependencies

    yarn install --pure-lockfile
  2. Build plugin in development mode or run in watch mode

    yarn dev
  3. Build plugin in production mode

    yarn build

Backend

  1. Build the backend binaries

    mage -v

Build a release for the Azure Data Explorer data source plugin

You need to have commit rights to the GitHub repository to publish a release.

  1. Update the version number in the package.json file.
  2. Update the CHANGELOG.md by copy and pasting the relevant PRs from Github's Release drafter interface or by running npm run generate-release-notes.
  3. PR the changes.
  4. Once merged, follow the Drone release process that you can find here