From 07147b9f1e8bb2ea17ef56bf79d6990133982593 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Sun, 12 Jan 2025 22:40:35 +0100 Subject: [PATCH] chore: add yaade self-hosting data following hoppscotch experiment failure --- knowledge base/self-hosting.md | 2 ++ knowledge base/yaade.md | 62 ++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 knowledge base/yaade.md diff --git a/knowledge base/self-hosting.md b/knowledge base/self-hosting.md index 32cea7e..dcc6232 100644 --- a/knowledge base/self-hosting.md +++ b/knowledge base/self-hosting.md @@ -30,6 +30,7 @@ The _art_ of hosting and managing applications on one's own servers instead of c | [Semaphore] | Task runner | [AWX], [CTFreak], [Rundeck], [Zuul] | | [Uptime Kuma] | Status page | [Gatus], [Statping-ng], [Vigil] | | [Wallabag] | Web page saver | Pocket | +| [Yaade] | API development environment | [Hoppscotch] | | [Zuul] | Task runner | [AWX], [CTFreak], [Rundeck], [Semaphore] | ## Further readings @@ -60,6 +61,7 @@ The _art_ of hosting and managing applications on one's own servers instead of c [safeline]: safeline.md [uptime kuma]: uptime%20kuma.md [wallabag]: wallabag.md +[yaade]: yaade.md [awesome-selfhosted]: https://awesome-selfhosted.net/ diff --git a/knowledge base/yaade.md b/knowledge base/yaade.md new file mode 100644 index 0000000..62c108a --- /dev/null +++ b/knowledge base/yaade.md @@ -0,0 +1,62 @@ +# Yaade + +Open-source, self-hosted collaborative API dev environment. + +1. [TL;DR](#tldr) +1. [Further readings](#further-readings) + 1. [Sources](#sources) + +## TL;DR + +
+ Setup + +```sh +docker run -d --restart=always -p '9339:9339' \ + -e 'YAADE_ADMIN_USERNAME'='admin' -v 'yaade:/app/data' \ + --name 'yaade' 'esperotech/yaade:latest' +``` + +
+ + + + + +## Further readings + +- [Codebase] + +### Sources + +- [Documentation] + + + + + + + +[codebase]: https://github.com/EsperoTech/yaade +[documentation]: https://docs.yaade.io/ + +