summaryrefslogtreecommitdiff
path: root/angelsharkd/src/routes/extensions/README.md
diff options
context:
space:
mode:
authorAdam Carpenter <adam.carpenter@adp.com>2021-12-01 09:35:06 -0500
committerGitHub <noreply@github.com>2021-12-01 09:35:06 -0500
commit37c5cdff434e86778977a7d7fd00d80b71fcf363 (patch)
treea582caae4e8c0706041497fb16a2525a14002c2e /angelsharkd/src/routes/extensions/README.md
parent9a940e64d55c4144fb65c702241eeac99a426bd1 (diff)
parente18d0c1a4189d5278639a9b323ae3794118566bc (diff)
downloadaltruistic-angelshark-37c5cdff434e86778977a7d7fd00d80b71fcf363.tar.xz
altruistic-angelshark-37c5cdff434e86778977a7d7fd00d80b71fcf363.zip
Merge pull request #5 from adpllc/extensions
Extensions and simple extension search
Diffstat (limited to 'angelsharkd/src/routes/extensions/README.md')
-rw-r--r--angelsharkd/src/routes/extensions/README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/angelsharkd/src/routes/extensions/README.md b/angelsharkd/src/routes/extensions/README.md
new file mode 100644
index 0000000..1aed1dd
--- /dev/null
+++ b/angelsharkd/src/routes/extensions/README.md
@@ -0,0 +1,13 @@
+# Angelshark Daemon Extensions
+
+This module aims to provide a simple way of extending Angelshark's basic
+functionality (running commands on the ACM) with additional HTTP endpoints that
+run one or more commands to achieve a basic business task.
+
+This functionality may not be desirable for all end users, and therefore is
+completely opt-in with feature flags. For example, at compile time, you can add
+`--features simple_search` to enable a given extension called `simple_search`.
+
+To add additional features, read `mod.rs` and `Cargo.toml` for `angelsharkd` to
+see how to conditionally incorporate your own warp HTTP filters into the
+project.