Specifically, from f89cc35a4aa8b928cc63502f3dde4d47447b5551, with
addition of README.md, CONTRIBUTING.md, and a few other ancillary files.
This commit is contained in:
Dustin J. Mitchell 2024-04-07 21:43:46 -04:00
commit 31cb732f06
No known key found for this signature in database
18 changed files with 4884 additions and 0 deletions

20
CONTRIBUTING.md Normal file
View file

@ -0,0 +1,20 @@
# Welcome
TaskChampion sync-server is very open to contributions, and we'd love to have your help!
A good starting point might be one of the issues tagged with ["good first issue"][first].
[first]: https://github.com/taskchampion/taskchampion-sync-server/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22
# Development Guide
This repository is a typical Rust application.
To work on it, you'll need to [install a recent version of Rust](https://www.rust-lang.org/tools/install) (the latest stable is always a good choice).
Once you've done that, run `cargo build` at the top level of this repository to build the binary.
Alternately, run `cargo test` to run the test suite.
## Making a Pull Request
We expect contributors to follow the [GitHub Flow](https://guides.github.com/introduction/flow/).
Aside from that, we have no particular requirements on pull requests.
Make your patch, double-check that it's complete (tests? docs? documentation comments?), and make a new pull request.