-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTaskfile.env
25 lines (21 loc) · 981 Bytes
/
Taskfile.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export GIT_URL_BASE='https://github.com/jupytercloud-project'
#############################################################################
#
# The repository containing the constructor code to instantiate the VM
#
#############################################################################
export CONSTRUCTOR_REPO_URL="${GIT_URL_BASE}/image_build.git"
export CONSTRUCTOR_REPO_BRANCH='main'
#export CONSTRUCTOR_REPO_BRANCH='dev'
#export CONSTRUCTOR_REPO_TAG='v2.0'
#export CONSTRUCTOR_REPO_TAG=''
export CONSTRUCTOR_REPO_DIR='.constructor'
#############################################################################
#
# The repository containing the provisioner code to install/configure jupyterhub instance
#
#############################################################################
export PROVISIONER_REPO_URL="${GIT_URL_BASE}/jupyterhub_provisioner.git"
export PROVISIONER_REPO_BRANCH='main'
export PROVISIONER_REPO_TAG=''
export PROVISIONER_REPO_DIR='.provisioner'