core: add ABOUT for quick verification and notes

This commit is contained in:
Jesús Pérez 2024-10-21 03:26:13 +01:00
parent 418233c48d
commit 25d3066677
No known key found for this signature in database

51
ABOUT.md Normal file
View File

@ -0,0 +1,51 @@
# Backend internal interview (rust) - improved
## Verification
From [input.txt](input.txt) compare output with [output_expected.txt](output_expected.txt)
```bash
cargo run -q -- -i input.txt -q
```
From tests
```rust
cargo test test_expected_metrics
```
**test_expectd_metrics** can be found at the end of [tests.rs](src/tests.rs)
> DEFAULT_INPUT_PATH and DEFAULT_REG_EXP values can be found in [defs.rs](src/defs.rs)
### For parallel processing
A second file [input_2.txt](input_2.txt) has been created and included in [config.toml](config.toml)
```rust
cargo run -q
```
It the same as:
```rust
cargo run -q -- -c config.toml
```
> [!NOTE]
> [config.toml](config.toml) is DEFAULT_CONFIG_PATH if does not exists it will only use DEFAULT_INPUT_PATH [input.txt](input.txt)
## Read Documentation
Build documentation and browse to **main** page
```rust
cargo doc --no-deps --open
```
Source code contains doc text.
## How to use
For more explanations use [how to use](howto.md)