Skip to content

Cookbook

dewy edited this page Apr 28, 2021 · 4 revisions

MPM Cookbook

A quick guide to all the commands and what they do.

Installing Packages

mpm install <PACKAGES>

So, for example:

mpm install 1.8.9 1.12.2-forge

will install the packages 1.8.9 and 1.12.2-forge.

Launching Packages

mpm launch <PACKAGE> <ENVIRONMENT> [EMAIL] [--otherArgs]

So, for example:

mpm launch 1.12.2-forge headlessforge johndoe@example.com

will launch the package 1.12.2-forge under the headlessforge environment, with the account that has the email johndoe@example.com.

Environments

Commands to manage your environments.

Creating Environments

mpm env create <ENVIRONMENTS>

So, for example:

mpm env create 1.8.9 test 1.12.2

will create 3 new environments, named 1.8.9, test and 1.12.2.

Removing Environments

mpm env remove <ENVIRONMENTS>

So, for example:

mpm env remove 1.8.9 test 1.12.2

will delete the 3 existing environments, named 1.8.9, test and 1.12.2.

Accounts

Commands to manage your accounts.

Adding An Account

mpm account add <EMAIL> <PASSWORD> <IGN>

Removing An Account

mpm account remove <EMAIL>

Miscellaneous

mpm -V

Prints version information.

mpm -h

Prints a rudimentary help message.

Clone this wiki locally