-
Notifications
You must be signed in to change notification settings - Fork 0
Cookbook
dewy edited this page Apr 28, 2021
·
4 revisions
A quick guide to all the commands and what they do.
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.
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.
Commands to manage your 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.
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.
Commands to manage your accounts.
mpm account add <EMAIL> <PASSWORD> <IGN>
mpm account remove <EMAIL>
mpm -V
Prints version information.
mpm -h
Prints a rudimentary help message.