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