Make CLI section more compact, move it out of the involved div

This commit is contained in:
Sashko Stubailo
2014-10-27 17:15:32 -07:00
parent 090b4d16d5
commit 0865fa732b
3 changed files with 11 additions and 16 deletions

View File

@@ -21,9 +21,6 @@ html-tools@1.0.2
htmljs@1.0.2
http@1.0.7
id-map@1.0.1
iron:core@1.0.0-pre5
iron:location@1.0.0-pre5
iron:url@1.0.0-pre5
jquery-waypoints@1.0.1
jquery@1.0.1
json@1.0.1

View File

@@ -60,12 +60,10 @@ catches your interest, we hope you'll get involved with the project!
<dt><span>GitHub</span></dt>
<dd>The core code is on <a href="http://github.com/meteor/meteor">GitHub</a>. If you're able to write code or file issues, we'd love to have your help. Please read <a href="https://github.com/meteor/meteor/wiki/Contributing-to-Meteor">Contributing to Meteor</a> for how to get started.
</dd>
{{/markdown}}
</div>
{{> commandLine}}
## XXX file structure
{{/markdown}}
</div>
</template>

View File

@@ -2,53 +2,53 @@
<h2 id="command-line">Command Line Tool</h2>
### `meteor help`
#### `meteor help`
Get help on `meteor` command line usage. Running `meteor help` by itself
will list the common `meteor` commands. Running `meteor help <command>`
will print detailed help about `meteor <command>`.
### `meteor create <name>`
#### `meteor create <name>`
Make a subdirectory called `<name>` and create a new Meteor app there.
### `meteor run`
#### `meteor run`
Serve the current app at [http://localhost:3000](http://localhost:3000)
using Meteor's local development server.
### `meteor deploy <site>`
#### `meteor deploy <site>`
Bundle your app and deploy it to `<site>`. Meteor provides free hosting if
you deploy to `<your app>.meteor.com` as long as `<your app>` is a name
that has not been claimed by someone else.
### `meteor update`
#### `meteor update`
Update your Meteor installation to the latest released version and then
(if `meteor update` was run from an app directory) update the packages
used by the current app to the latest versions that are compatible with
all other packages used by the app.
### `meteor add`
#### `meteor add`
Add a package (or multiple packages) to your Meteor project. To query for
available packages, use the `meteor search` command.
### `meteor remove`
#### `meteor remove`
Remove a package previously added to your Meteor project. For a list of
the packages that your application is currently using, use the
`meteor list` command.
### `meteor mongo`
#### `meteor mongo`
Opens a MongoDB shell for viewing and/or manipulating collections stored
in the database. Note that you must already be running a server for the
current app (in another terminal window) in order for `meteor mongo` to
connect to the app's database.
### `meteor reset`
#### `meteor reset`
Reset the current project to a fresh state. Removes all local data.