summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
blob: 0a4cf33e66321dde92f5487364bbec124421e783 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Contributing

## Guidelines

- This project uses
  [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/)
- This project uses [semantic versioning](https://semver.org/)
- Please fork, work on a feature branch, and then submit a PR
- Please prefer preserving backwards compatibility

## Getting Started

- A text editor; any will do, but if you use VSCode, it will ask if you want the
  recommended extensions for this project
- [The Rust Toolchain and `cargo`](https://rustup.rs)
- `make(1)`

To compile:

`$ cargo build`

To run:

`$ cargo run --bin angelsharkcli`

or

`$ cargo run --bin angelsharkd`

To open the library documentation:

`$ cargo doc --no-deps --open`

## Finding Work To Do

- Check the project issue tracker for fixes and feature requests
- Search for `todo!()` macros in the code itself; this typically indicates an
  unimplemented function or method that needs work.
- Search for `TODO:` comments in the code itself