my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
3.8 KiB

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