diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2020-06-16 00:13:17 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2020-06-16 00:14:39 -0400 |
| commit | 1763c0e3c44d5aaca17e944246bef3d4d236c01d (patch) | |
| tree | b1b35c1ef9c299945e8bea2d6fd1db8fa0146638 | |
| parent | 0801cd259a5073a694afa839447d6bc5daf0d380 (diff) | |
Add a README and project metadata.
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | README.md | 32 |
2 files changed, 34 insertions, 0 deletions
@@ -1,8 +1,10 @@ [package] name = "things-to-check" version = "0.4.1-alpha.0" +repository = "https://github.com/ojacobson/things-to-check/" publish = false authors = ["Owen Jacobson <owen@grimoire.ca>"] +homepage = "https://things-to-check.herokuapp.com/" edition = "2018" [dependencies] diff --git a/README.md b/README.md new file mode 100644 index 0000000..909dc53 --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# Things To Check + +A friend of mine used to run an IRC bot that could provide "helpful" +troubleshooting suggestions, based on places the folks in that chat had stubbed +their toes in the past. + +I thought this was such a good idea, I turned it into a web bot. + +## You Will Need + +Want to work on this code, or run it yourself? Install the following: + +* [An installed copy of the Rust toolchain](https://rustup.rs). + +Building, testing, &c follow Rust norms: use +[Cargo](https://doc.rust-lang.org/cargo/guide/working-on-an-existing-project.html) +to build, test, or run the code locally. + +## Configuration + +By default, this app will listen on `http://localhost:3000/`. You can change the +port number by exporting a `PORT` environment variable in the process where this +program runs. + +## Vocabulary + +The list of suggestions is given by the `src/things-to-check.yml` file, which +contains a YAML list of strings. Each string is a Markdown snippet to render in +the page as a suggestion. + +Stable links provide the user with an index into this list. When you insert new +items, insert them at the end. |
