Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.13 KB

CONTRIBUTING.md

File metadata and controls

40 lines (28 loc) · 1.13 KB

Contributing to Docrunner

If you would like to contribute to docrunner please follow these instructions to set a local development environment up

Prerequisities: Install the Dart Language SDK on your local system

  1. Fork this repository

  2. Clone your fork of this repository

  3. Base all of your development of the dev branch

  4. Run this command in the root directory to install the necessary packages for the project:

dart pub get
  1. Run this command in the root directory to generate all necessary dart code:
dart run build_runner build
  1. To run the cli tool in development, run:
dart run bin/main.dart
  1. You're all set! You can now edit source code within the bin and lib directories

  2. (Optional) If you want to build and test a custom self-contained executable for the project, you can run:

dart compile exe bin/main.dart

This will create binary file named main in the bin folder

For larger changes like adding support for another language, please open an issue here