Skip to content

Commit 1ee6bd7

Browse files
committed
Merge branch 'release/v1.5.2'
2 parents 8949d57 + f028248 commit 1ee6bd7

3 files changed

Lines changed: 151 additions & 2 deletions

File tree

README.md

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,13 +221,29 @@ Security:
221221
* [Usage](#usage)
222222
* [Commands](#commands)
223223
<!-- tocstop -->
224+
* [Vaah](#vaah)
225+
* [Usage](#usage)
226+
* [Commands](#commands)
227+
<!-- tocstop -->
224228
# Usage
225229
<!-- usage -->
226230
```sh-session
227231
$ npm install -g vaah
228232
$ vaah COMMAND
229233
running command...
230234
$ vaah (-v|--version|version)
235+
vaah/1.5.2 win32-x64 node-v12.16.1
236+
$ vaah --help [COMMAND]
237+
USAGE
238+
$ vaah COMMAND
239+
...
240+
```
241+
<!-- usagestop -->
242+
```sh-session
243+
$ npm install -g vaah
244+
$ vaah COMMAND
245+
running command...
246+
$ vaah (-v|--version|version)
231247
vaah/1.5.1 win32-x64 node-v12.16.1
232248
$ vaah --help [COMMAND]
233249
USAGE
@@ -356,6 +372,136 @@ OPTIONS
356372
--here If you want to VaahCMS in current director
357373
```
358374

375+
_See code: [src/commands/cms/install.ts](https://github.com/webreinvent/vaah/blob/v1.5.2/src/commands/cms/install.ts)_
376+
377+
## `vaah cms:m`
378+
379+
```
380+
USAGE
381+
$ vaah cms:m
382+
383+
OPTIONS
384+
-f, --force
385+
-h, --help show CLI help
386+
-n, --name show CLI help
387+
```
388+
389+
_See code: [src/commands/cms/m.ts](https://github.com/webreinvent/vaah/blob/v1.5.2/src/commands/cms/m.ts)_
390+
391+
## `vaah cms:m-crud`
392+
393+
```
394+
USAGE
395+
$ vaah cms:m-crud
396+
397+
OPTIONS
398+
-f, --force
399+
-h, --help show CLI help
400+
-n, --name show CLI help
401+
```
402+
403+
_See code: [src/commands/cms/m-crud.ts](https://github.com/webreinvent/vaah/blob/v1.5.2/src/commands/cms/m-crud.ts)_
404+
405+
## `vaah cms:m-make TYPE MODULE NAME`
406+
407+
```
408+
USAGE
409+
$ vaah cms:m-make TYPE MODULE NAME
410+
411+
OPTIONS
412+
-b, --backend
413+
-f, --frontend
414+
-h, --help show CLI help
415+
-n, --name show CLI help
416+
```
417+
418+
_See code: [src/commands/cms/m-make.ts](https://github.com/webreinvent/vaah/blob/v1.5.2/src/commands/cms/m-make.ts)_
419+
420+
## `vaah cms:t`
421+
422+
```
423+
USAGE
424+
$ vaah cms:t
425+
426+
OPTIONS
427+
-f, --force
428+
-h, --help show CLI help
429+
-n, --name show CLI help
430+
```
431+
432+
_See code: [src/commands/cms/t.ts](https://github.com/webreinvent/vaah/blob/v1.5.2/src/commands/cms/t.ts)_
433+
434+
## `vaah cms:t-make TYPE THEME NAME`
435+
436+
```
437+
USAGE
438+
$ vaah cms:t-make TYPE THEME NAME
439+
440+
OPTIONS
441+
-b, --backend
442+
-f, --frontend
443+
-h, --help show CLI help
444+
-n, --name show CLI help
445+
```
446+
447+
_See code: [src/commands/cms/t-make.ts](https://github.com/webreinvent/vaah/blob/v1.5.2/src/commands/cms/t-make.ts)_
448+
449+
## `vaah hello [FILE]`
450+
451+
```
452+
USAGE
453+
$ vaah hello [FILE]
454+
455+
OPTIONS
456+
-f, --force
457+
-h, --help show CLI help
458+
-n, --name=name name to print
459+
460+
EXAMPLE
461+
$ vaah hello
462+
hello world from ./src/hello.ts!
463+
```
464+
465+
_See code: [src/commands/hello.ts](https://github.com/webreinvent/vaah/blob/v1.5.2/src/commands/hello.ts)_
466+
467+
## `vaah help [COMMAND]`
468+
469+
```
470+
USAGE
471+
$ vaah help [COMMAND]
472+
473+
ARGUMENTS
474+
COMMAND command to show help for
475+
476+
OPTIONS
477+
--all see all commands in CLI
478+
```
479+
480+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.0/src/commands/help.ts)_
481+
<!-- commandsstop -->
482+
* [`vaah cms:install [PROJECT_NAME]`](#vaah-cmsinstall-project_name)
483+
* [`vaah cms:m`](#vaah-cmsm)
484+
* [`vaah cms:m-crud`](#vaah-cmsm-crud)
485+
* [`vaah cms:m-make TYPE MODULE NAME`](#vaah-cmsm-make-type-module-name)
486+
* [`vaah cms:t`](#vaah-cmst)
487+
* [`vaah cms:t-make TYPE THEME NAME`](#vaah-cmst-make-type-theme-name)
488+
* [`vaah hello [FILE]`](#vaah-hello-file)
489+
* [`vaah help [COMMAND]`](#vaah-help-command)
490+
491+
## `vaah cms:install [PROJECT_NAME]`
492+
493+
```
494+
USAGE
495+
$ vaah cms:install [PROJECT_NAME]
496+
497+
ARGUMENTS
498+
PROJECT_NAME [default: vaahcms] Enter the project folder name
499+
500+
OPTIONS
501+
-h, --help show CLI help
502+
--here If you want to VaahCMS in current director
503+
```
504+
359505
_See code: [src/commands/cms/install.ts](https://github.com/webreinvent/vaah/blob/v1.5.1/src/commands/cms/install.ts)_
360506

361507
## `vaah cms:m`

lib/commands/cms/install.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,11 @@ class CmsInstall extends command_1.Command {
183183
this.spinner.succeed();
184184
log(chalk.white.bgGreen.bold(" VaahCMS Installed! "));
185185
log(chalk.green("=================================================================="));
186-
log("Run " + chalk.green("php artisan server") + " and visit following url to setup:");
186+
log(chalk.green("Open") + " the project folder and ");
187+
log("run " + chalk.green("php artisan server") + " then visit following url to setup:");
187188
log(chalk.green("http://127.0.0.1:8000/vaahcms/setup"));
189+
log("In case of " + chalk.green("Xampp or Wamp") + ", visit following url to setup:");
190+
log(chalk.green("http://localhost/<project-folder-path>/public/vaahcms/setup"));
188191
log(chalk.green("=================================================================="));
189192
}
190193
//-----------------------------------

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vaah",
33
"description": "CLI of VaahCMS - VaahCLI",
4-
"version": "1.5.1",
4+
"version": "1.5.2",
55
"author": "Vaah",
66
"bin": {
77
"vaah": "./bin/run"

0 commit comments

Comments
 (0)