Commit e6e66c86 by John Jarvis

create COMMON_BASE_DIR

parent 191900e1
...@@ -2,14 +2,16 @@ ...@@ -2,14 +2,16 @@
# Override these variables # Override these variables
# to change the base directory # to change the base directory
# where edX is installed # where edX is installed
COMMON_DATA_DIR: /edx/var
COMMON_APP_DIR: /edx/app COMMON_BASE_DIR: /edx
COMMON_DATA_DIR: "{{ COMMON_BASE_DIR}}/var"
COMMON_APP_DIR: "{{ COMMON_BASE_DIR}}/app"
COMMON_LOG_DIR: "{{ COMMON_DATA_DIR }}/log" COMMON_LOG_DIR: "{{ COMMON_DATA_DIR }}/log"
# these directories contain # these directories contain
# symlinks for convenience # symlinks for convenience
COMMON_BIN_DIR: /edx/bin COMMON_BIN_DIR: "{{ COMMON_BASE_DIR }}/bin"
COMMON_CFG_DIR: /edx/etc COMMON_CFG_DIR: "{{ COMMON_BASE_DIR }}/etc"
COMMON_ENV_NAME: 'default_env' COMMON_ENV_NAME: 'default_env'
COMMON_ENV_TYPE: 'default_type' COMMON_ENV_TYPE: 'default_type'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment