Skip to content

Instantly share code, notes, and snippets.

@kennethkoontz
Created August 9, 2012 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennethkoontz/3307181 to your computer and use it in GitHub Desktop.
Save kennethkoontz/3307181 to your computer and use it in GitHub Desktop.
mrt --help mockup
kenneth@poseidon:~$ mrt --help
Usage: meteorite [--version] [--help] <command> [<args>]
A Meteor installer, and smart-package manager wrapped around the meteor command line interface. (Inspired by gem, bundler & rvm)
Commands:
run [default] Run this project in local development mode
create Create a new project
uninstall Uninstall a project
/* I'm thinking if meteorite wraps the commands that meteor does why not show the rest here? */
update Upgrade to the latest version of Meteor
add Add a package to this project
remove Remove a package from this project
list List available packages
bundle Pack this project up into a tarball
mongo Connect to the Mongo database for the specified site
deploy Deploy this project to Meteor
logs Show logs for specified site
reset Reset the project state. Erases the local database.
See 'meteorite help <command>' for details on a command.
kenneth@poseidon:~$ mrt help create
Usage: meteorite create <name>
meteorite create --branch=devel [<name>]
meteorite create --example <example_name> [<name>]
meteorite create --list
Make a subdirectory named <name> and create a new Meteor project
there. You can also pass an absolute or relative path.
You can pass --example to start off with a copy of one of the Meteor
sample applications. Use --list to see the available examples. Use
--branch to specify a branch.
Options:
--example Example template to use.
--list Show list of available examples. [boolean]
--branch Branch to use [string]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment