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