14 lines
529 B
Bash
14 lines
529 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo ""
|
||
|
echo "wp-dev-container - provision container"
|
||
|
echo "wp-dev-create - create new configuration file"
|
||
|
echo "wp-dev-publish - publish to remote"
|
||
|
echo "wp-dev-testdata - install test data on development server"
|
||
|
echo "wp-dev-webserver - provision the web server"
|
||
|
echo ""
|
||
|
echo "All commands with the exception of 'wp-dev-create' must either have a"
|
||
|
echo "filename supplied as an argument or the default named configuration"
|
||
|
echo "file ('wp-dev-config') present in the working directory."
|
||
|
echo ""
|