Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 882 Bytes

CONTRIBUTING.md

File metadata and controls

42 lines (28 loc) · 882 Bytes

Contributing to spice.js

Requirements

Developing

The development branch is trunk. This is the branch that all pull requests should be made against.

To develop locally:

  1. Fork this repository to your own GitHub account and then clone it to your local device.

  2. Create a new branch:

    git checkout -b MY_BRANCH_NAME
  3. Install the dependencies with:

    yarn install
  4. To run the tests, create a .env file with your Spice.ai API Key:

    API_KEY=<Spice.ai API Key>
  5. Run the tests with:

    make test