cleaning out references to avenger5 text
[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 # the top level of the user's application storage.
15 export BASE_APPLICATION_PATH="$HOME/apps"
16 # where the code should come from.
17 export DEFAULT_REPOSITORY_ROOT="git@github.com:kwentworth"
18 # we checkout the git repository to a directory underneath the app storage
19 # directory named this (see below for "this"), if that directory name is found.
20 # this is a saco designs infrastructure standard.
21 export CHECKOUT_DIR_NAME="avenger5"
22 # the subfolder that the web browser will look for the site in,
23 # underneath the application's specific path.
24 export STORAGE_SUFFIX="/public"
25
26 ####
27
28 # constants within our cakelampvm machine.
29
30 # in our scheme, the single IP address that all our domains map to.
31 export IP_ADDRESS="10.28.42.20"
32 # the email address (where first dot is replaced by @) for the administrator of the domain.
33 export SERVER_ADMIN="developer.cakelampvm.com"
34 # the name of the name server for the new domains (should already be configured).
35 export MAIN_NAME_SERVER="ns.cakelampvm.com"
36 # the name of the mail server for a new domain (should already be configured).
37 export MAIL_SERVER="mail.cakelampvm.com"
38 # the distribution name to be listed in info for the new domain or subdomain.
39 export DISTRO="ubuntu"
40
41 ####
42
43 # deployment information for the application / site.
44
45 export APPLICATION_NAME="${app_dirname}"
46
47 echo "$(date_stringer): app name was computed as $APPLICATION_NAME" >> "$SSM_LOG_FILE"
48
49 # change this if the site is on the "real" internet.
50 export DOMAIN_NAME="${app_dirname}.vm"
51
52 echo "$(date_stringer): domain name was computed as $DOMAIN_NAME" >> "$SSM_LOG_FILE"
53
54 export REPO_NAME="${app_dirname}"
55
56 echo "$(date_stringer): repo name was computed as $REPO_NAME" >> "$SSM_LOG_FILE"
57
58 export THEME_NAME="$(capitalize_first_char "${app_dirname}")"
59
60 echo "$(date_stringer): theme name was computed as $THEME_NAME" >> "$SSM_LOG_FILE"
61
62 ####
63