X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fsite_avenger%2Fpowerup.sh;h=eccb0b6aefd33f6ace6af024be3390c88fcc1843;hb=c70cef0f335b09a31133a97b0ab10de845a993e3;hp=a72e06f19ec982ff5f86d57fbbb499283c2fd922;hpb=d1413a80a384c0849c18466ff06d3054de7fc2f6;p=feisty_meow.git diff --git a/scripts/site_avenger/powerup.sh b/scripts/site_avenger/powerup.sh index a72e06f1..eccb0b6a 100644 --- a/scripts/site_avenger/powerup.sh +++ b/scripts/site_avenger/powerup.sh @@ -3,8 +3,8 @@ # Author: Kevin Wentworth # Author: Chris Koeritz -# This script "powers up" a cakephp site by running the database migrations, -# cleaning out the ORM cache, and fixing file permissions. +# This script "powers up" a cakephp site by checking out the code from the +# git repository and installing the composer dependencies. # This script is currently highly specific to site avenger. # General Info: @@ -13,7 +13,7 @@ # A git repository is expected to be provided, and we will get all the code # for the web site from there. The repository is expected to have a single # application "name" and one or more "themes". By convention, the name -# and the theme are often the same. +# and the theme are often the same, except the theme is capitalized. # For example, let's say our app name is "turtle" and our theme name is "box". # The repo is checked out to a folder called "~/apps/turtle". # This script will want to use "turtle" as the app name. @@ -21,15 +21,17 @@ # start with. The concept of the theme comes from cakephp. export WORKDIR="$( \cd "$(\dirname "$0")" && \pwd )" # obtain the script's working directory. +export FEISTY_MEOW_APEX="$( \cd "$WORKDIR/../.." && \pwd )" -source "$WORKDIR/shared_site_mgr.sh" +source "$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh" ############################ function print_instructions() { echo - echo "$(basename $0 .sh) [app dirname] [repository] [theme name]" + echo "$(basename $0 .sh) [app dirname] [repository] [theme name] " +#[user name] echo echo "All parameters are optional, and intelligent guesses for them will be made." echo @@ -53,33 +55,45 @@ if [ "$app_dirname" == "-help" -o "$app_dirname" == "--help" ]; then print_instructions fi +source "$WORKDIR/shared_site_mgr.sh" + sep -check_application_dir "$APPLICATION_DIR" +check_apps_root "$BASE_APPLICATION_PATH" # find proper webroot where the site will be initialized. if [ -z "$app_dirname" ]; then # no dir was passed, so guess it. - find_app_folder "$APPLICATION_DIR" + find_app_folder "$BASE_APPLICATION_PATH" else - test_app_folder "$APPLICATION_DIR" "$app_dirname" + test_app_folder "$BASE_APPLICATION_PATH" "$app_dirname" fi +test_or_die "finding and testing app folder" # where we expect to find our checkout folder underneath. -full_app_dir="$APPLICATION_DIR/$app_dirname" +full_app_dir="$BASE_APPLICATION_PATH/$app_dirname" # use our default values for the repository and theme if they're not provided. if [ -z "$repo_name" ]; then - repo_name="$app_dirname" + repo_name="$REPO_NAME" + if [ -z "$repo_name" ]; then + repo_name="$app_dirname" + fi fi if [ -z "$theme_name" ]; then - theme_name="$(capitalize_first_char ${app_dirname})" + theme_name="$THEME_NAME" + if [ -z "$theme_name" ]; then + theme_name="$(capitalize_first_char ${app_dirname})" + fi fi echo "Repository: $repo_name" echo "Theme name: $theme_name" sep +echo in powerup before update repo with: +var CHECKOUT_DIR_NAME DEFAULT_REPOSITORY_ROOT + # this should set the site_store_path variable if everything goes well. update_repo "$full_app_dir" "$CHECKOUT_DIR_NAME" "$DEFAULT_REPOSITORY_ROOT" "$repo_name" test_or_die "Updating the repository storage directory"