Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 714 Bytes

contributing.md

File metadata and controls

43 lines (28 loc) · 714 Bytes

Contributing

Suggestions and pull requests are very welcome. 😊

Development

To develop the project locally, you'll need node >= 18 and pnpm >= 8.

git clone https://github.com/dexaai/dexter
cd dexter
pnpm i

You can now run the tsc dev server to automatically recompile the project whenever you make changes:

pnpm dev

Testing

You can run the test suite via:

pnpm test

Or just the Vitest unit tests via:

pnpm test:unit

Examples

To run the included examples, clone this repo, run pnpm install, set up your .env file, and then run an example file using tsx.

For example:

npx tsx examples/basic.ts