forked from openedx-unsupported/devstack
-
Notifications
You must be signed in to change notification settings - Fork 3
/
local.sh.sample
executable file
·47 lines (40 loc) · 1.83 KB
/
local.sh.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# ##############################################
#
# RaccoonGang configuration defaults
#
# - to disable effect of this file remove it or rename to local-rg.sh.disabled
# - to work with docker or docker-compose build please set this variables in
# current terminal session by executing `. local-rg.sh`
#
# ##############################################
# The part of docker container names can be overriden for specific project
#
# please do not modify this variable! the work is in progress...
COMPOSE_PROJECT_NAME=devstack
export COMPOSE_PROJECT_NAME
# The directory where clonned repositories will be kept
# (edx-platform, cs_comments_service, credentials, etc, etc)
#
# Your can keep single workspace for multiple projects by
# specifying here the full path to workspace directory
DEVSTACK_WORKSPACE=./..
export DEVSTACK_WORKSPACE
# Default suffix while selecting branch name for ALL repositories.
# Many OpenEdx devstack management scripts relies on this variable.
#
OPENEDX_RELEASE=hawthorn.master
export OPENEDX_RELEASE
# Customisible list of devstack repositories
repos=(
"https://github.com/edx/course-discovery.git,open-release/${OPENEDX_RELEASE}"
"https://github.com/edx/credentials.git,open-release/${OPENEDX_RELEASE}"
"https://github.com/edx/cs_comments_service.git,open-release/${OPENEDX_RELEASE}"
"https://github.com/edx/ecommerce.git,open-release/${OPENEDX_RELEASE}"
"https://github.com/edx/edx-e2e-tests.git,open-release/${OPENEDX_RELEASE}"
"https://github.com/edx/edx-notes-api.git,open-release/${OPENEDX_RELEASE}"
"https://github.com/raccoongang/edx-platform.git,hawthorn-rg"
"https://github.com/raccoongang/edx-theme.git,base-hawthorn-stage"
"https://github.com/edx/xqueue.git,open-release/${OPENEDX_RELEASE}"
"https://github.com/edx/edx-analytics-pipeline.git,open-release/${OPENEDX_RELEASE}"
)
export repos