mum

1.1.9 • Public • Published

mum

mum is short for Modern Update Manager



Mum in a nutshell

If you have any need to consistently replicate a deployment process with any level of complexity or even if you just hate waiting on slow SFTP uploads for every... single... file then mum may be the solution for you.


Example Usage of Mum

<iframe width="560" height="315" src="https://www.youtube.com/embed/e8mZorhjZSs" frameborder="0" allowfullscreen></iframe>

Table of Contents


What is mum?

mum is a deployment system for software you write.

You might think of mum as an advanced version of rsync that can handle different source types (git, tarballs, zip files), pulling in dependencies your project may have, syncing files from one location to many target locations, and even running before and after installation scripts that you write.

Its primary benefit is being able to deploy directly from any number of private or public git repositories at specific hashes/branches/tags as required, though installation from a source directory or tar/zip file is also supported.

The rest of this document presumes you care about consistent and efficient installation of software to multiple target servers such as multiple dev servers, qa, staging, live, many machines in an office, etc.

Who should use mum to deploy things?

The primary target for mum is web applications developers who would like to reduce the tedium of installing their software to a server instance.

Note: The target currently is *nix (mainly Linux) servers.

If you have any need to consistently replicate a deployment process with any level of complexity or even if you just hate waiting on slow SFTP uploads for every... single... file then mum may be the solution for you.

But there are already lots of package managers...

Yes, there certainly are. apt, yum, npm, ruby gems, composer, pip, gopm to name a few.

mum is not trying to replace them. It is trying to give you a one-stop shop for deployment of complex systems that often require many packages be installed.

Even simple websites using Wordpress may require many Apache and PHP packages to be installed. Then you need code from at least two repositories (Wordpress and your custom site code) or one or two tar/zip files to get the site installed.

Then you need to ensure all the right Apache and PHP modules are actually enabled and after that you'll need to configure the Apache virtual host.

What if you could turn all of that tedious setup into a single command? If you want to see how, keep reading.

Project Goals

  • Provide a deployment (installation and update) system that can run on *nix.
  • Software language independence. Use the same tool to install and update from any repository you can access.
  • Scriptable. Make custom things happen at specific times before or after deployment.
  • Support nested / recursive dependencies.
  • Be as fast / efficient as practical (e.g. only clone on initial install, use fetch/pull for updates.)

Future

  • Operate quickly using concurrency where possible. (e.g. clone from multiple repositories at once)

Installing mum

Pre-requisites for installing and using mum: nodejs (v4.x), git

Debian / Ubuntu

Ensure prerequisites are installed by running:

$ curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
$ sudo apt-get install -y nodejs git

To install mum for use globally: sudo npm install -g mum

To install mum for use only within the current directory: sudo npm install mum

CentOS

These instructions are not yet available. If you know what this process should be please submit a pull request with an update to this section of the readme file.

Mac OS X

These instructions are not yet available. If you know what this process should be please submit a pull request with an update to this section of the readme file.

Usage

Key Facts

  • Mum can install from four different source types
    • Git repository
    • Tarball (.tar, .tgz)
    • Zip archive (.zip)
    • Directory / Folder

Basic usage

mum <command>

You can view help for mum by running mum -h or get help for a specific command by running mum <command> -h.

You can use mum for simple projects without even having to create a configuration file!

To install using mum you simply need to have any valid source of files for it to deploy.

1. - Installing from a Directory / Folder

Let's say you have the following directory on your server: /var/myproject

You can install that to another location on the same server (let's say /var/www/html) by running this command:

mum install /var/myproject /var/www/html

2. - Installing from a Tarball / Zip archive

Let's say you have uploaded or downloaded an archive file with your project in it and saved it to: /var/myproject.tgz

You can install to a location on that server (let's say /var/www/html) by running this command:

mum install /var/myproject.tgz /var/www/html

3. - Installing from a Git Repository

Let's say you have a Git repository URL to your project (you need the SSH URL, not the HTTPS URL). The URL might be: git@github.com:mwhite05/wpdemo.git

You can install directly from your Git repository to a location on your server (let's say /var/www/html) by running this command:

mum install git@github.com:mwhite05/wpdemo.git#master /var/www/html

NOTE! It is very important that you include the #<branch|tag|sha1> at the end of your URL.
This tells mum exactly what part of your repository to check out and install.

4. - Updating Any Mum Installed Project

The command to update an installed project is the exact same no matter which source type you used for the installation.

Just navigate to the directory above where you installed the project and run:

mum update

If you installed to /var/www/html then you would change directories to cd /var/www then run mum update

Need to feel confident that the code is deployed in full with no extraneous files in the primary target area? Run mum update -c

Is it time to update to a new branch/tag/hash? Well you could manually modify the mumi.json file but as of 0.2.7-alpha you can run mum update <commitish>. Alternately run mum update "#<commitish>".

You can modify the mumi.json file with an "overrides" object as well. This overrides object allows you to apply custom modifications to a dependency's definition without having to directly commit a change to the repository's mum.json file. See the Overrides Example at the bottom of this page for details on how to set this up.

If you need to run a clean update and provide a new commit-ish then run: mum update <commitish> -c or mum update "#<commitish>" -c

If you want to debug your installer scripts and processes, mum update -S is a handy command that skips all file copy, checkout, and clone operations that otherwise would have taken place. This allows you to modify your scripts without committing them for the purpose of testing and debugging.

Configuration

Configuration is optional. You only need a configuration file to do more advanced things such as:

  • Map directories in your project to multiple target destinations (instead of just copying all the files to one target directory)
  • Exclude some files / folders from being installed
  • Add dependencies to your project so that it can automatically install other files and projects not contained directly in your own project.

The configuration file that mum uses is named mum.json and goes directly in the root folder of your project.

Don't worry - mum automatically excludes itself from installing to your target location.

Dependencies

You can add one or more dependencies to your project using the dependencies array:

{
    "dependencies": [
        {
            "source": "git@github.com:WordPress/WordPress.git#4.6",
            "installTo": "./"
        }
    ]
}

Each item in the dependencies array must be an object. Every dependency object must contain two properties:

  • source - The source to pull for the dependency. This can be any valid mum source type (including Git urls and paths to archive files or directories)
  • target - The target directory to install to. This can be an absolute path (starting with /) or a relative path (starting with ./). If you set it to a relative path, it will be relative to the target installation directory. If you installed to /var/www/html then an installTo value of ./ would install the dependency to /var/www/html as well.
  • name - Optional - The friendly name to use for the dependency when cloning it for deployment. This is used to create a symlink in the .mum directory to the actual clone directory used by mum. If the source repository has a name property in its own mum.json configuration it will be ignored in favor of the one you define in the dependency configuration.

You can have multiple dependencies:

{
    "dependencies": [
        {
            "name": "wordpress",
            "source": "git@github.com:WordPress/WordPress.git#4.6",
            "installTo": "./"
        },
        {
            "source": "git@github.com:mwhite05/mum-example.git#basic",
            "installTo": "./examples"
        }
    ]
}

Install Scripts

If you want to more easily access the mum cache directory for a specific repository you can provide a name for your repository.

When this is provided, mum will create a symlink by that name pointing to the directory containing the local repository clone. If two repositories in the dependency chain have the same name then the behavior is not defined so just be sure that does not happen.

If we named the repository in the above configuration example it might look like this:

{
    "name": "my-project",
    "dependencies": [
        {
            "source": "git@github.com:WordPress/WordPress.git#4.6",
            "installTo": "./"
        },
        {
            "source": "git@github.com:mwhite05/mum-example.git#basic",
            "installTo": "./examples"
        }
    ]
}

Install Scripts

You can configure mum to run scripts before and after installation. A script is any executable file (compiled binary executable files work too).

These scripts run as the same user you run mum install or mum update with (often root) so they can be very powerful.

Let's say you had a project with the following directory structure:

  • index.html
  • scripts/
    • before-install
    • after-install-1.py
    • after-install-2.php
  • site/
    • (misc. site files)

The configuration for running those scripts would be:

{
    "install": {
        "scripts": {
            "beforeInstall": [
                "./mum-scripts/before-install"
            ],
            "afterInstall": [
                "./mum-scripts/after-install-1.py",
                "./mum-scripts/after-install-2.php"
            ]
        }
    }
}

There are four types of install scripts available:

  • beforeInstall - Runs before any files are synced to the target installation directory.
  • beforeSync - Runs after beforeInstall and before any files are synced to the target installation directory.
  • afterSync - Runs after all files are synced to the target installation directory (including files from dependencies)
  • afterInstall - Runs after afterSync and after all files are synced to the target installation directory (including files from dependencies)
  • cleanup - Runs after afterInstall has run for the primary installation target and all dependencies. Your cleanup scripts should not do extensive work but instead should perform actions such as setting file permissions, removing extraneous installation generated files, etc. Avoid creating new files or directories as part of the cleanup process.

The reason for these different levels is to ensure some level of future flexibility in the API in case new functionality or steps are added and to allow you to control whether something runs absolutely last or just sort of last when dependencies that also have scripts are involved.

Environment Variables

Your installation scripts have access to some environment variables that are set by mum.

  • MUM_CURRENT_SOURCE_DIR - This is the path from which the files are being copied. This is set uniquely for any dependencies.
  • MUM_CURRENT_INSTALL_DIR - This is the path to which the files are being copied. This is set uniquely for any dependencies but may be the same as the primary target directory.
  • MUM_CACHE_DIR - This is the directory where mum stores all the sources unpacked from archive files or checked out from git repositories. This value will be the same for all scripts.
  • MUM_INITIAL_INSTALL_DIR - This is the directory that mum was instructed to install to as an initial target directory. This value will be the same for all scripts.

Install Map

You can map directories in your project to anywhere you want. By default, if you do not define a map, all of the files and directories in your project's root directory will by copied to the target installation directory.

You can also exclude files and directories from being copied. This is very useful when you have installation scripts or configuration files inside your project as you generally do not want those to be deployed as part of your project.

Below is an example of a fairly advanced mum.json configuration file that tells mum to copy everything in the project directory to the target installation directory but it excludes the mum-scripts/ and apache directories.

It then tells mum to also copy everything from the ./apache directory to the /etc/apache2/sites-available directory.

{
    "install": {
        "map": [
            {
                "source": "./",
                "installTo": "./",
                "excludes": [
                    "mum-scripts",
                    "apache"
                ]
            },
            {
                "source": "./apache",
                "target": "/etc/apache2/sites-available"
            }
        ],
        "scripts": {
            "afterInstall": [
                "./mum-scripts/after-install"
            ]
        }
    },
    "dependencies": [
        {
            "source": "git@github.com:WordPress/WordPress.git#4.6",
            "installTo": "./"
        }
    ]
}

Overrides Example

Below is an example of how to modify define "overrides" in mumi.json.

Assuming you have a project mum.json like this:

{
    "name": "my-project",
    "dependencies": [
        {
            "source": "git@some-repository-host.com:MyFramework.git#2.3",
            "installTo": "./"
        }
    ]
}

You can then override the dependencies like this in the mumi.json file:

{
    "source": "git@some-repository-host.com:MyProject.git#feature/quick-cart",
    "target": "/home/my-project/public_html",
    "overrides": {
        "my-project": {
            "dependencies": [
                {
                    "source": "git@some-repository-host.com:MyFramework.git#2.4",
                    "installTo": "./"
                }
            ]
        }
    }
}

Note the version specified on the MyFramework dependency has been set to 2.4 in the overrides instead of 2.3 as defined in the project mum.json file.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.9
    1
    • latest

Version History

Package Sidebar

Install

npm i mum

Weekly Downloads

2

Version

1.1.9

License

MIT

Unpacked Size

103 kB

Total Files

36

Last publish

Collaborators

  • mwhite05