From 888d8d2ad5e686374228d8d97d20daf570b1a918 Mon Sep 17 00:00:00 2001 From: Rand McKinney Date: Thu, 21 Nov 2013 15:16:15 -0800 Subject: [PATCH] Delete cli.md Content moved to wiki. --- docs/cli.md | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 docs/cli.md diff --git a/docs/cli.md b/docs/cli.md deleted file mode 100644 index d3d7b64d..00000000 --- a/docs/cli.md +++ /dev/null @@ -1,48 +0,0 @@ -## Command Line Tool - -StrongLoop Suite includes a command-line tool, `slc` (StrongLoop Command), for working with applications. -The `slc lb` command enables you to quickly create new LoopBack applications and models with the following sub-commands: - -* [workspace](#workspace): create a new workspace, essentially a container for multiple projects. -* [project](#project): create a new application. -* [model](#model): create a new model for a LoopBack application. - -For more information on the `slc` command, see [StrongLoop Control](/strongnode/#strongloop-control-slc). - -### workspace - -
-slc lb workspace wsname
-
- -Creates an empty directory named _wsname_. The argument is optional; default is "loopback-workspace". - -A LoopBack workspace is essentially a container for application projects. It is not required to create an application, but may be helpful for organization. - -### project - -
-slc lb project app_name
-
- -Creates a LoopBack application called _appname_, where _appname_ is a valid JavaScript identifier. -This command creates a new directory called _appname_ in the current directory containing: -* app.js -* package.json -* modules directory, containing: - -### model - -
-slc lb model modelname
-
- -Creates a model named _modelname_ in an existing LoopBack application. - -Provide the -`-i` or `--interactive` flag to be prompted through model -configuration. Use the `--data-source` flag to specify the name of a -custom data source; default is data source named "db".