Merge branch 'release-2.140.98'
[feisty_meow.git] / scripts / site_avenger / config / default.app
1 #!/bin/bash
2
3 # provides the default values for the variables used in our site management scripts.
4
5 # config files for site avenger apps usually override nothing, since we
6 # auto-construct the app name and domain.
7 # if they do need to override anything, they can just specify replacement
8 # values for the variables in this file.
9
10 ####
11
12 # basic information that is constant for all site avenger sites.
13
14 export APPLICATION_DIR="$HOME/apps"
15 export DEFAULT_REPOSITORY_ROOT="git@github.com:kwentworth"
16 export CHECKOUT_DIR_NAME="avenger5"
17
18 ####
19
20 # deployment information for the application / site.
21
22 export APPLICATION_NAME="${app_dirname}"
23
24 echo app name was computed as $APPLICATION_NAME
25
26 # change this if the site is on the "real" internet.
27 export DOMAIN_NAME="${app_dirname}.vm"
28
29 echo domain name was computed as $DOMAIN_NAME
30
31 export REPO_NAME="${app_dirname}"
32
33 echo repo name was computed as $REPO_NAME
34
35 export THEME_NAME="$(capitalize_first_char "${app_dirname}")"
36
37 echo theme name was computed as $THEME_NAME
38
39 ####
40