From d595b4d2c0194d04931a38867c8688e101341fdf Mon Sep 17 00:00:00 2001 From: Christoph Reiter <reiter.christoph@gmail.com> Date: Tue, 21 Jun 2022 12:49:54 +0200 Subject: [PATCH] Remove everything bundle related from the docs --- README.md | 28 ---------------------------- bin/cli | 1 - package.json | 2 +- 3 files changed, 1 insertion(+), 30 deletions(-) diff --git a/README.md b/README.md index 487c6a1..6651282 100644 --- a/README.md +++ b/README.md @@ -40,31 +40,3 @@ npx @digital-blueprint/cli update-app signature **Warning:** There may be issues when you run these commands as root user, best use a non-root user, like `www-data`. To do this you can for example open a shell with `runuser -u www-data -- bash`. - -## Generate DBP Symfony bundle - -If you want to create a DBP Symfony bundle in a subdirectory of the current folder you can call: - -```bash -npx @digital-blueprint/cli generate-bundle --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit -``` - -If you also want to set the vendor and category you can use two more parameters: - -```bash -npx @digital-blueprint/cli generate-bundle --vendor=myvendor --category=mycategory --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit -``` - -## Show DBP Symfony bundle names - -If you want to just want to show the names of a DBP Symfony bundle you can call: - -```bash -npx @digital-blueprint/cli show-bundle-names --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit -``` - -If you also want to set the vendor and category you can use two more parameters: - -```bash -npx @digital-blueprint/cli show-bundle-names --vendor=myvendor --category=mycategory --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit -``` diff --git a/bin/cli b/bin/cli index 20f7de1..0912fd0 100755 --- a/bin/cli +++ b/bin/cli @@ -2,7 +2,6 @@ # cli.sh install-app <dbp-package> <path> # Install example: `cli.sh install-app signature my-app /` will install the signature app into directory 'my-app' with '/' as path prefix # Update example: `cli.sh update-app signature` will update in the current directory -# Bundle generation example: `cli.sh generate-bundle --vendor=myvendor --category=mycategory --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit` will generate the bundle in a subdirectory of the current directory set -euo pipefail export SHELLOPTS diff --git a/package.json b/package.json index d2a9286..b4c567f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@digital-blueprint/cli", "version": "0.0.29", - "description": "CLI to manage DBP frontend applications and Symfony bundles", + "description": "CLI to manage DBP frontend applications", "license": "LGPL-2.1-or-later", "bin": { "cli": "bin/cli" -- GitLab