From 0a4a2bbac2087d93a275f511e10b94865e0c4842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Tue, 2 Nov 2021 18:53:46 +0100 Subject: [PATCH] feat: add richie to bundled plugins For more information, checkout the plugin docs: https://github.com/overhangio/tutor-richie --- CHANGELOG.md | 1 + Makefile | 2 +- bin/main.py | 1 + requirements/plugins.txt | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca1a09d..5205563 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +- [Feature] Add [tutor-richie](https://github.com/overhangio/tutor-richie) to the plugins that are bundled with the tutor binary. - [Improvement] Make `tutor plugins list` print plugins sorted by name. - [Improvement] Ignore Python plugins which cannot be loaded. diff --git a/Makefile b/Makefile index 9ddd9c3..7709351 100644 --- a/Makefile +++ b/Makefile @@ -98,7 +98,7 @@ ci-test-bundle: ## Run basic tests on bundle yes "" | ./dist/tutor config save --interactive ./dist/tutor config save ./dist/tutor plugins list - ./dist/tutor plugins enable android discovery ecommerce license mfe minio notes webui xqueue + ./dist/tutor plugins enable android discovery ecommerce license mfe minio notes richie webui xqueue ./dist/tutor plugins list ./dist/tutor license --help diff --git a/bin/main.py b/bin/main.py index e259de2..0d118c5 100755 --- a/bin/main.py +++ b/bin/main.py @@ -10,6 +10,7 @@ for plugin_name in [ "mfe", "minio", "notes", + "richie", "webui", "xqueue", ]: diff --git a/requirements/plugins.txt b/requirements/plugins.txt index da66ffd..7e74b29 100644 --- a/requirements/plugins.txt +++ b/requirements/plugins.txt @@ -6,5 +6,6 @@ tutor-license>=12.0.0,<13.0.0 tutor-mfe>=12.0.0,<13.0.0 tutor-minio>=12.0.0,<13.0.0 tutor-notes>=12.0.0,<13.0.0 +tutor-richie>=12.0.0,<13.0.0 tutor-webui>=12.0.0,<13.0.0 tutor-xqueue>=12.0.0,<13.0.0