#!/usr/bin/env bash

# Usage: p42 run [<component>]
# Summary: Build images and start application containers.
# Help: Build images and start application containers.
# You can run the entire application or just a given set of components.
#
#     p42 run
#     p42 run www redis
#

p42 build $@
p42 start $@
