]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/meteor/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / meteor / README.md
1 # meteor plugin
2
3 The [meteor plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/meteor) provides many
4 [useful aliases](#aliases) as well as completion for the `meteor` command.
5
6 Enable it by adding `meteor` to the plugins array in your zshrc file:
7
8 ```zsh
9 plugins=(... meteor)
10 ```
11
12 ## Aliases
13
14 | Alias   | Command                    | Description                                                      |
15 |---------|----------------------------|------------------------------------------------------------------|
16 | `ma`    | `meteor add`               | Add a package to this project                                    |
17 | `map`   | `meteor add-platform`      | Add a platform to this project                                   |
18 | `mad`   | `meteor admin`             | Administrative commands                                          |
19 | `mau`   | `meteor authorized`        | View or change authorized users and organizations for a site     |
20 | `mb`    | `meteor build`             | Build this project for all platforms                             |
21 | `mcl`   | `meteor claim`             | Claim a site deployed with an old Meteor version                 |
22 | `mca`   | `meteor configure-android` | Run the Android configuration tool from Meteor's ADK environment |
23 | `mc`    | `meteor create`            | Create a new project                                             |
24 | `mdb`   | `meteor debug`             | Run the project, but suspend the server process for debugging    |
25 | `mde`   | `meteor deploy`            | Deploy this project to Meteor                                    |
26 | `mis`   | `meteor install-sdk`       | Installs SDKs for a platform                                     |
27 | `ml`    | `meteor list`              | List the packages explicitly used by your project                |
28 | `mlp`   | `meteor list-platforms`    | List the platforms added to your project                         |
29 | `mls`   | `meteor list-sites`        | List sites for which you are authorized                          |
30 | `mli`   | `meteor login`             | Log in to your Meteor developer account                          |
31 | `mlo`   | `meteor logout`            | Log out of your Meteor developer account                         |
32 | `mlog`  | `meteor logs`              | Show logs for specified site                                     |
33 | `mm`    | `meteor mongo`             | Connect to the Mongo database for the specified site             |
34 | `mp`    | `meteor publish`           | Publish a new version of a package to the package server         |
35 | `mpa`   | `meteor publish-for-arch`  | Builds an already-published package for a new platform           |
36 | `mpr`   | `meteor publish-release`   | Publish a new meteor release to the package server               |
37 | `mr`    | `meteor remove`            | Remove a package from this project                               |
38 | `mrp`   | `meteor remove-platform`   | Remove a platform from this project                              |
39 | `mre`   | `meteor reset`             | Reset the project state. Erases the local database               |
40 | `m`     | `meteor run`               | **[default]** Run this project in local development mode         |
41 | `ms`    | `meteor search`            | Search through the package server database                       |
42 | `msh`   | `meteor shell`             | Launch a Node REPL for interactively evaluating server-side code |
43 | `msw`   | `meteor show`              | Show detailed information about a release or package             |
44 | `mt`    | `meteor test-packages`     | Test one or more packages                                        |
45 | `mu`    | `meteor update`            | Upgrade this project's dependencies to their latest versions     |
46 | `mw`    | `meteor whoami`            | Prints the username of your Meteor developer account             |