diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-29 23:42:04 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-29 23:42:04 +0100 |
| commit | 05d4ce0068063c1677e291bc22195d7f266f5b3d (patch) | |
| tree | ccdd552149fd1ca2fc2c9bd7bb0a35064d37a002 | |
| parent | 37f001e1f74edc2fd19f07fb307910ea25417a39 (diff) | |
| download | mihi-05d4ce0068063c1677e291bc22195d7f266f5b3d.tar.gz mihi-05d4ce0068063c1677e291bc22195d7f266f5b3d.zip | |
Move some parts of the README into CONTRIBUTING.md
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
| -rw-r--r-- | CONTRIBUTING.md | 14 | ||||
| -rw-r--r-- | README.md | 17 |
2 files changed, 14 insertions, 17 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..2cb72af --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,14 @@ +This application is built like any other Rust project: + +``` +$ cargo build +``` + +In order to test things you need to provide a database for it. One is provided +in the form of `testdata/test.sqlite3`. So take that and set the `MIHI_DATABASE` +environment variable to its full path. And after that you will be able to run: + +``` +$ cargo test +$ cargo clippy --all-targets --all-features +``` @@ -22,23 +22,6 @@ pass them. If you feel like you want to double down on some specific word that is not being asked, you can also call the `words poke` command, which will force the next session to ask for it. -## Contributing - -This application is built like any other Rust project: - -``` -$ cargo build -``` - -In order to test things you need to provide a database for it. One is provided -in the form of `testdata/test.sqlite3`. So take that and set the `MIHI_DATABASE` -environment variable to its full path. And after that you will be able to run: - -``` -$ cargo test -$ cargo clippy --all-targets --all-features -``` - ## License This repository holds two licenses, as you can also note on the `Cargo.toml` |
