psboard-qaqc-postprocess/README.md

42 lines
696 B
Markdown
Raw Normal View History

# psb_qaqc
2024-07-14 11:12:01 +09:00
WIP
2024-07-25 13:43:00 +09:00
日本語: [README-ja.md](./docs/README-ja.md)
2024-07-24 12:48:41 +09:00
## For developers
2024-07-24 12:48:41 +09:00
Use `rustup` to set up developing tools.
### build / run
```sh
cargo build
cargo run -- -h
```
Build for JATHub using cross:
```sh
CROSS_CONTAINER_ENGINE=podman cross build --release --target armv7-unknown-linux-musleabihf
```
2024-07-24 12:48:41 +09:00
`CROSS_CONTAINER_ENGINE=podman` is optional(default docker).
### test
```sh
cargo test
```
### doc
```sh
cargo doc --open
```
## TODO
2024-07-14 11:12:01 +09:00
- add more unittests
- test for various cases
2024-07-21 21:25:22 +09:00
- split into mods(maybe as lib crates)
2024-07-14 11:12:01 +09:00
- add csv check/validate subcommand
- skew measurement?
- skew measurement test
- for start-shiftwork v1.0.0 (add start date parsing)
2024-07-14 11:12:01 +09:00
check `TODO`s in comments.