Browse Source

fix --list-plugins

master
Sven Ullmann 2 years ago
parent
commit
2c735ba2b1
  1. 31
      README.md
  2. 5
      bin/project-manager

31
README.md

@ -5,7 +5,9 @@ It has a design that i was developing and using all the time.
Hope you will enjoy. Free to use. Hope you will enjoy. Free to use.
## Installation
## Installation and first use
### Install Project Manager
In order to get you startet create first a folder, eg: In order to get you startet create first a folder, eg:
@ -24,7 +26,7 @@ Now you can execute it the first time and check the configuration of your Projec
project-manager project-manager
## Setup
### Setup
In order to use the project manager you have to execute it once In order to use the project manager you have to execute it once
@ -32,24 +34,41 @@ In order to use the project manager you have to execute it once
![](.images/install-project-manager.png) ![](.images/install-project-manager.png)
## Create your first project
### Create your first project
project-manager create-project domain.de www.domain.de domain project-manager create-project domain.de www.domain.de domain
![](.images/create-project.png) ![](.images/create-project.png)
## Workspace directories
### Workspace directories
![](.images/workspace-created-directories.png) ![](.images/workspace-created-directories.png)
## Configure your project
### Configure your project
![](.images/configure-your-project.png) ![](.images/configure-your-project.png)
## Add a new Subdomain
### Add a new Subdomain
![](.images/adding-subdomain-project.png) ![](.images/adding-subdomain-project.png)
![](.images/directories-with-subdomain.png) ![](.images/directories-with-subdomain.png)
## Commando reference
### The help command
project-manager --help
project-manager --help command
project-manager --help plugin:command
### Print lists
project-manager --list-commands
project-manager --list-commands plugin
project-manager --list-plugins
### The usage
project-manager command
project-manager plugin:command

5
bin/project-manager

@ -68,17 +68,16 @@ then
command="install-project-manager" command="install-project-manager"
plugin="" plugin=""
fi fi
if [ "$1" == "" ] && [ "command" == "" ] if [ "$1" == "" ] && [ "command" == "" ]
then then
use use
exit exit
fi fi
if [ "$help" == true ] || [ "$list_commands" == true ] || [ "$list_plugins" == "true" ]
if [ "$help" == true ] || [ "$list_commands" == true ] || [ "$list_plugins" == true ]
then then
if [ "$command" == "" ]
if [ "$command" == "" ] && [ "$list_commands" == false ] && [ "$list_plugins" == false ]
then then
use use
exit exit

Loading…
Cancel
Save