Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 2.17 KB

CONTRIBUTING.md

File metadata and controls

42 lines (27 loc) · 2.17 KB

Contributing

Thank you for considering to contribute to StableView!

When contributing to this repository, please first discuss the change you wish to make via discuss, issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Development environment setup

To set up a development environment, please follow these steps:

  1. Install Rust.

  2. Clone the repo

    git clone https://github.com/shubhamai/StableView
  3. Install opencv-rust on your system.

  4. Run cargo run to run the application without any optimizations. To run the application fully optimized, add --release to the command, ie. cargo run --release

  5. To build the .msi installer for windows -

    1. First install cargo-wix.
    2. Run cargo wix. A new folder will be created in target folder containing the .msi file.

Issues and feature requests

You've found a bug in the source code, a mistake in the wiki or maybe you'd like a new feature? Take a look at GitHub Discussions to see if it's already being discussed. You can help us by submitting an issue on GitHub. Before you create an issue, make sure to search the issue archive, your issue may have already been addressed!

How to submit a Pull Request

  1. Search our repository for open or closed Pull Requests that relate to your submission. You don't want to duplicate effort.
  2. Fork the project
  3. Create your feature branch (git checkout -b feat/amazing_feature)
  4. Commit your changes (git commit -m 'feat: add amazing_feature').
  5. Push to the branch (git push origin feat/amazing_feature)
  6. Open a Pull Request