From cbe9aca4a3b0c227d704b69f51500f9b5c707d91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kulh=C3=A1nek?= Date: Sun, 11 Oct 2020 21:51:20 +0200 Subject: [PATCH 1/6] Add recipe for helppc/supervisor-bundle --- .../1.0/config/packages/helppc_supervisor.yaml | 8 ++++++++ .../1.0/config/routes/helppc_supervisor.yaml | 3 +++ helppc/supervisor-bundle/1.0/manifest.json | 9 +++++++++ 3 files changed, 20 insertions(+) create mode 100644 helppc/supervisor-bundle/1.0/config/packages/helppc_supervisor.yaml create mode 100644 helppc/supervisor-bundle/1.0/config/routes/helppc_supervisor.yaml create mode 100644 helppc/supervisor-bundle/1.0/manifest.json diff --git a/helppc/supervisor-bundle/1.0/config/packages/helppc_supervisor.yaml b/helppc/supervisor-bundle/1.0/config/packages/helppc_supervisor.yaml new file mode 100644 index 00000000..1e3ca8b0 --- /dev/null +++ b/helppc/supervisor-bundle/1.0/config/packages/helppc_supervisor.yaml @@ -0,0 +1,8 @@ +supervisor: + default_environment: all + servers: + all: + localhost: + scheme: http + host: 127.0.0.1 + port: 9001 diff --git a/helppc/supervisor-bundle/1.0/config/routes/helppc_supervisor.yaml b/helppc/supervisor-bundle/1.0/config/routes/helppc_supervisor.yaml new file mode 100644 index 00000000..151af159 --- /dev/null +++ b/helppc/supervisor-bundle/1.0/config/routes/helppc_supervisor.yaml @@ -0,0 +1,3 @@ +supervisor: + resource: "@SupervisorBundle/Resources/config/routing.xml" + prefix: /supervisor diff --git a/helppc/supervisor-bundle/1.0/manifest.json b/helppc/supervisor-bundle/1.0/manifest.json new file mode 100644 index 00000000..dae33c5f --- /dev/null +++ b/helppc/supervisor-bundle/1.0/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "HelpPC\\Bundle\\SupervisorBundle\\SupervisorBundle": ["all"] + }, + "aliases": ["supervisor", "supervisor-ui", "supervisorui"], + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 111cda44838570ace7a7d19687aa0d7edb30cb00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kulh=C3=A1nek?= Date: Sun, 11 Oct 2020 21:53:53 +0200 Subject: [PATCH 2/6] Add recipe for helppc/supervisor-bundle --- helppc/supervisor-bundle/1.0/manifest.json | 1 - 1 file changed, 1 deletion(-) diff --git a/helppc/supervisor-bundle/1.0/manifest.json b/helppc/supervisor-bundle/1.0/manifest.json index dae33c5f..d74174b4 100644 --- a/helppc/supervisor-bundle/1.0/manifest.json +++ b/helppc/supervisor-bundle/1.0/manifest.json @@ -2,7 +2,6 @@ "bundles": { "HelpPC\\Bundle\\SupervisorBundle\\SupervisorBundle": ["all"] }, - "aliases": ["supervisor", "supervisor-ui", "supervisorui"], "copy-from-recipe": { "config/": "%CONFIG_DIR%/" } From 7f1fe256fe2ba70fbe8d46c7a1512adc196f5ff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kulh=C3=A1nek?= Date: Sat, 31 Oct 2020 19:35:43 +0100 Subject: [PATCH 3/6] Append Supervisor REST bundle --- .../1.0/config/packages/helppc_supervisor_rest.yaml | 8 ++++++++ .../1.0/config/routes/helppc_supervisor_rest.yaml | 3 +++ helppc/supervisor-rest-bundle/1.0/manifest.json | 8 ++++++++ 3 files changed, 19 insertions(+) create mode 100644 helppc/supervisor-rest-bundle/1.0/config/packages/helppc_supervisor_rest.yaml create mode 100644 helppc/supervisor-rest-bundle/1.0/config/routes/helppc_supervisor_rest.yaml create mode 100644 helppc/supervisor-rest-bundle/1.0/manifest.json diff --git a/helppc/supervisor-rest-bundle/1.0/config/packages/helppc_supervisor_rest.yaml b/helppc/supervisor-rest-bundle/1.0/config/packages/helppc_supervisor_rest.yaml new file mode 100644 index 00000000..7510c863 --- /dev/null +++ b/helppc/supervisor-rest-bundle/1.0/config/packages/helppc_supervisor_rest.yaml @@ -0,0 +1,8 @@ +supervisor_rest: + default_environment: all + servers: + all: + application: + scheme: http + host: localhost + port: 9006 diff --git a/helppc/supervisor-rest-bundle/1.0/config/routes/helppc_supervisor_rest.yaml b/helppc/supervisor-rest-bundle/1.0/config/routes/helppc_supervisor_rest.yaml new file mode 100644 index 00000000..de25c464 --- /dev/null +++ b/helppc/supervisor-rest-bundle/1.0/config/routes/helppc_supervisor_rest.yaml @@ -0,0 +1,3 @@ +supervisor: + resource: "@SupervisorRestBundle/Resources/config/routing.xml" + prefix: /api/supervisor diff --git a/helppc/supervisor-rest-bundle/1.0/manifest.json b/helppc/supervisor-rest-bundle/1.0/manifest.json new file mode 100644 index 00000000..3fbafe93 --- /dev/null +++ b/helppc/supervisor-rest-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "HelpPC\\Bundle\\SupervisorRestBundle\\SupervisorRestBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 013194b49b902628aafb89e53d53b96f0c244249 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kulh=C3=A1nek?= Date: Sat, 31 Oct 2020 19:46:32 +0100 Subject: [PATCH 4/6] Add dependencies --- .../1.0/config/packages/helppc_supervisor_rest.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helppc/supervisor-rest-bundle/1.0/config/packages/helppc_supervisor_rest.yaml b/helppc/supervisor-rest-bundle/1.0/config/packages/helppc_supervisor_rest.yaml index 7510c863..d39c43bd 100644 --- a/helppc/supervisor-rest-bundle/1.0/config/packages/helppc_supervisor_rest.yaml +++ b/helppc/supervisor-rest-bundle/1.0/config/packages/helppc_supervisor_rest.yaml @@ -1,7 +1,7 @@ supervisor_rest: - default_environment: all + default_environment: dev servers: - all: + dev: application: scheme: http host: localhost From d469900d65b6ecf325fd948368bd7d0178d8bda0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kulh=C3=A1nek?= Date: Sun, 27 Dec 2020 19:24:18 +0100 Subject: [PATCH 5/6] Fix --- .../supervisor-bundle/1.0/config/routes/helppc_supervisor.yaml | 2 +- .../1.0/config/routes/helppc_supervisor_rest.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helppc/supervisor-bundle/1.0/config/routes/helppc_supervisor.yaml b/helppc/supervisor-bundle/1.0/config/routes/helppc_supervisor.yaml index 151af159..46d08658 100644 --- a/helppc/supervisor-bundle/1.0/config/routes/helppc_supervisor.yaml +++ b/helppc/supervisor-bundle/1.0/config/routes/helppc_supervisor.yaml @@ -1,3 +1,3 @@ supervisor: - resource: "@SupervisorBundle/Resources/config/routing.xml" + resource: '@SupervisorBundle/Resources/config/routing.xml' prefix: /supervisor diff --git a/helppc/supervisor-rest-bundle/1.0/config/routes/helppc_supervisor_rest.yaml b/helppc/supervisor-rest-bundle/1.0/config/routes/helppc_supervisor_rest.yaml index de25c464..de190ac3 100644 --- a/helppc/supervisor-rest-bundle/1.0/config/routes/helppc_supervisor_rest.yaml +++ b/helppc/supervisor-rest-bundle/1.0/config/routes/helppc_supervisor_rest.yaml @@ -1,3 +1,3 @@ supervisor: - resource: "@SupervisorRestBundle/Resources/config/routing.xml" + resource: '@SupervisorRestBundle/Resources/config/routing.xml' prefix: /api/supervisor From 24b77c6689526587f5862d709959f5d62946105a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kulh=C3=A1nek?= Date: Wed, 17 Mar 2021 16:40:57 +0100 Subject: [PATCH 6/6] Re-run