Skip to content

Latest commit

 

History

History
143 lines (99 loc) · 6.51 KB

CONTRIBUTING.md

File metadata and controls

143 lines (99 loc) · 6.51 KB

Contributing

This guide will show you how to run this project locally if you want to test or contribute to it.

🛠 Prerequisites

Most projects under the umbrella of data systems are written in Rust, so we prefer using Rust tooling and community standards. Ensure you have the following tools installed:

📟 Setting up

First, clone this repository:

git clone [email protected]:fuellabs/data-systems.git
cd data-systems

Now, install the necessary tools to ensure code quality and standards. Use Make to simplify this process:

make setup

You can check the ./scripts/setup.sh file to see what is being installed on your machine.

📂 Project Structure

Here's a brief overview of the project's directory structure:

  • crates/: Contains the main Rust crates for the project
  • benches/: Benchmarking code
  • docker/: Docker-related files
  • helm/: Helm charts for Kubernetes deployment
  • scripts/: Utility scripts

📇 Code conventions

We enforce some conventions to ensure code quality, sustainability, and maintainability. The following tools help us with that:

  • Conventional Commits - Ensures that commit messages are clear and understandable.
  • Pre-commit - Ensures that the code is formatted and linted before being committed.
  • Commitlint - Lints commit messages to ensure they follow the Conventional Commits specification.

📝 Writing your Commits & Pull Requests

When creating a commit, please follow the Conventional Commits specification. Use category(scope or module): message in your commit message with one of the following categories:

  • build: Changes regarding the build of the software, dependencies, or the addition of new dependencies.
  • ci: Changes regarding the configuration of continuous integration (e.g., GitHub Actions, CI systems).
  • docs: Changes to existing documentation or creation of new documentation (e.g., README, usage docs).
  • feat: All changes that introduce completely new code or new features.
  • fix: Changes that fix a bug (ideally referencing an issue if present).
  • perf: Changes that improve the performance of the software.
  • refactor: Any code-related change that is not a fix or a feature.
  • test: Changes regarding tests (adding new tests or changing existing ones).

This is a general rule used for commits. When you are creating a PR, ensure that the title follows the same pattern, but in terms of PR, the scope is a mandatory field. That's the scopes allowed at the moment:

  • repo: Changes that affect a global scope of the repository.
  • release: Scoped used for automatic release pull requests.
  • core: Changes that affect the core package.
  • publisher: Changes that affect the publisher package.
  • fuel-streams: Changes that affect the fuel-streams package.
  • benches: Changes related to benchmarks.
  • deps: Changes related to dependencies.
  • data-parser: Changes that affect the data-parser package.
  • macros: Changes that affect the macros package.

📜 Useful Commands

To make your life easier, here are some commands to run common tasks in this project:

Command Description
make build Build the project with default settings
make clean Clean the build artifacts and release directory
make dev-watch Run the project in development mode with auto-reload
make dev Run the project in development mode
make fmt Format the code and Markdown files
make install Fetch the project dependencies using cargo fetch
make lint Perform linting checks on the code and Markdown files
make run Run the built executable using cargo run --release
make setup Run the setup script located at ./scripts/setup.sh
make test Run all tests in the project
make coverage Generate code coverage reports

🧪 Running Tests

To run all tests in the project, use:

make test

For running specific tests or test modules, you can use the standard Cargo test command:

cargo test [test_name_or_module]

📊 Code Coverage

To generate code coverage reports, use:

make coverage

This will generate coverage reports for different packages in the project. You can find the configuration for coverage analysis in the tarpaulin.toml file.

📬 Open a Pull Request

  1. Fork this repository and clone your fork.
  2. Create a new branch out of the main branch with the naming convention <username>/<category>/<branch-name>.
  3. Make and commit your changes following the conventions described above.
  4. Ensure the title of your PR is clear, concise, and follows the pattern <category(scope): message>.
  5. Ensure pre-commit checks pass by running make lint.
  6. Push your changes and open a pull request.

🛠 Troubleshooting

If you encounter any issues while setting up or contributing to the project, here are some common problems and their solutions:

  1. Pre-commit hooks failing: Ensure you've installed all the required dependencies and run make setup. If issues persist, try running pre-commit run --all-files to see detailed error messages.

  2. Build failures: Make sure you're using the latest stable Rust version and the correct nightly version. You can update Rust using rustup update stable and rustup update nightly-2024-11-06.

  3. Test failures: If specific tests are failing, try running them in isolation to see if it's a concurrency issue. Use RUST_BACKTRACE=1 to get more detailed error information.

If you encounter any other issues not listed here, please open an issue on the GitHub repository.

📚 Additional Resources

We appreciate your contributions to the Fuel Data Systems project!