mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
* Document new Procfile feature * Add and update tests * Fix a typo in generate_scale_file (ref #1923)
10 lines
228 B
Bash
Executable File
10 lines
228 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/ps/functions"
|
|
|
|
APP="$1"
|
|
|
|
extract_procfile "$APP"
|
|
generate_scale_file "$APP"
|