Skip to content

Commit a82d0ea

Browse files
committed
README
1 parent c6ac4e4 commit a82d0ea

File tree

1 file changed

+29
-22
lines changed

1 file changed

+29
-22
lines changed

README.md

Lines changed: 29 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,41 @@
11
# Project
22

3-
**REPLACE:** One sentence description of the project.
4-
5-
## About
6-
7-
**REPLACE:** Describe your project in more detail. What does it do? Who are the intended
8-
users? Why is it important or meaningful? How does it improve upon similar
9-
software? Is it a component of or extension to a larger piece of software?
3+
MDRepo Rust tools
104

115
## Installation
126

13-
**REPLACE:** How does on install the software? What are the dependencies, if any? Is there a
14-
Docker image or installation package of some sort?
7+
* Install Rust (https://rust-lang.org/tools/install/)
8+
* `cargo build`
159

1610
## Usage
1711

18-
**REPLACE:** How is the software run (or consumed, for libraries)? Are there any command line
19-
flags the user should know about? What do they do, exactly? What do the input
20-
data look like? Are there special file formats in use, what are they? What does
21-
the output look like?
12+
```
13+
$ cargo run --quiet --bin mdr -- -h
14+
Usage: mdr [OPTIONS] [COMMAND]
15+
16+
Commands:
17+
validate Validate simulation directory
18+
meta-check Check metadata
19+
process Process simulation directory
20+
reprocess Reprocess an existing simulation
21+
ticket Use ticket ID to download and process
22+
help Print this message or the help of the given subcommand(s)
2223
23-
## Development
24+
Options:
25+
-l, --log <LOG> Log level [possible values: info, debug]
26+
--log-file <LOG_FILE> Log file
27+
-h, --help Print help
28+
-V, --version Print version
2429
25-
**REPLACE:** What language(s) are in use? What does a user need to install for development
26-
purposes? This might include build systems, Docker, a particular compiler or
27-
runtime version, test libraries or tools, linters, code formatters, or other
28-
tools. Are there any special requirements, like processor architecture? What
29-
commands should developers use to accomplish common tasks like building, running
30-
the test suite, and so on?
30+
$ cargo run --quiet --bin mdr-toml -- -h
31+
Usage: mdr-toml <FILENAME>
32+
33+
Arguments:
34+
<FILENAME>
35+
36+
Options:
37+
-h, --help Print help
38+
```
3139

3240
## Contributing
3341

@@ -50,7 +58,6 @@ See `LICENSE` for details.
5058

5159
## Authors
5260

53-
**REPLACE:** Who should people contact with questions?
61+
* Ken Youens-Clark <kyclark@arizona.edu>
5462

5563
See `AUTHORS` the full list of authors.
56-

0 commit comments

Comments
 (0)