mMeco - Commands


mmeco-cd-dev

Command changes directory to active development environment. A development environment must be initialized for this command to work.

Examples

mmeco-cd-dev

mmeco-cd-stage

Command changes directory to active stage environment. A stage environment must be initialized for this command to work.

Examples

mmeco-cd-stage

mmeco-create-dev

Command creates a new development environment for the current user.

Flags

Short Long Type Default Example Description
name name str N/A PT-125 Name of the development environment that will be created.

Examples

mmeco-create-dev PT-125

# Result

Development environment has been created: /<PATH>/meco/master/developers/soner/development/PT-125

You can initialize the newly created development environment by invoking the following command:

mmeco --project master --development PT-125

mmeco-create-project

Command creates a new project.

Flags

Short Long Type Default Example Description
name name str N/A tam Name of the project that will be created.

Examples

mmeco-create-project tam

# Result

You can initialize the newly created project by invoking the following command:

meco --project tam

mmeco-create-reserved

Command creates a new reserved environment for the current user.

Examples

mmeco-create-reserved

# Result

Reserved environment has been created: /<PATH>/meco/master/developers/soner/reserved/main

mmeco-create-stage

Command creates a new stage environment for the current user.

Flags

Short Long Type Default Example Description
name name str N/A PT-125 Name of the stage environment that will be created.

Examples

If you want to create a stage environment with the name of current development environment you can do so;

mmeco-create-stage

Stage Package Created: mCore
Stage Package Created: mMayaCore
Stage Package Created: mProcess

Stage environment has been created: /<PATH>/meco/master/developers/soner/stage/main

You can initialize the newly created stage environment by invoking the following command:

meco --project master --developer soner --stage main

Alternatively you can provide custom name for the stage environment like so;

mmeco-create-stage -n PT-125

Stage Package Created: mCore
Stage Package Created: mMayaCore
Stage Package Created: mProcess

Stage environment has been created: /<PATH>/meco/master/developers/soner/stage/PT-125

You can initialize the newly created stage environment by invoking the following command:

meco --project master --developer soner --stage PT-125