|
| 1 | +# Description: Setup the environment for Dendron development. |
| 2 | +# |
| 3 | +# Pre-requisites: |
| 4 | +# - DENDRON_MONOREPO environment variable must be set. |
| 5 | +# It should point to dendron's monorepo |
| 6 | +# (directory where you cloned https://github.com/dendronhq/dendron.git into) |
| 7 | +# |
| 8 | +# This script is based off of https://docs.dendron.so/notes/64f0e2d5-2c83-43df-9144-40f2c68935aa/ |
| 9 | + |
| 10 | +# -z: returns true when value is empty. |
| 11 | +if [[ -z "${DENDRON_MONOREPO}" ]]; then |
| 12 | + echo "DENDRON_MONOREPO environment variable is not set. Please set it to dendron's monorepo directory." |
| 13 | + exit 1 |
| 14 | +fi |
| 15 | + |
| 16 | +if [[ -f "${DENDRON_MONOREPO:?}"/shell/_util.sh ]] |
| 17 | +then |
| 18 | + source "${DENDRON_MONOREPO:?}"/shell/_util.sh |
| 19 | +else |
| 20 | + echo "File not found: ${DENDRON_MONOREPO:?}/shell/_util.sh" |
| 21 | + exit 1 |
| 22 | +fi |
| 23 | + |
| 24 | +_setup_node_version(){ |
| 25 | + # NVM is often not propagated to subshells. This is a workaround to |
| 26 | + # allow usage of NVM within the script. |
| 27 | + source_robust "${DENDRON_MONOREPO:?}"/shell/_setup_nvm_source_me.sh |
| 28 | + |
| 29 | + # We need to source verification of NVM due to subshell issue mentioned above. |
| 30 | + source_robust "${DENDRON_MONOREPO:?}"/shell/_verify_nvm_source_me.sh |
| 31 | + |
| 32 | + # There is an issue with node 17+ and `yarn setup` that causes an error. |
| 33 | + # Node 16 is the latest version that works with `yarn setup` with |
| 34 | + # current dendron setup. |
| 35 | + # |
| 36 | + # Another option to try is to use later node version with: |
| 37 | + # export NODE_OPTIONS=--openssl-legacy-provider |
| 38 | + # |
| 39 | + # However, it seems more robust to pick a node version that is known to work. |
| 40 | + # Hence, we are setting node version to 16. |
| 41 | + eae nvm install 16 |
| 42 | + eae nvm use 16 |
| 43 | +} |
| 44 | + |
| 45 | +main_impl(){ |
| 46 | + eae _setup_node_version |
| 47 | + |
| 48 | + eae npm install -g yarn |
| 49 | + eae npm install -g lerna |
| 50 | + |
| 51 | + eae cd "${DENDRON_MONOREPO:?}" |
| 52 | + |
| 53 | + echo "install workspace dependencies..." |
| 54 | + eae yarn |
| 55 | + |
| 56 | + echo "install package dependencies..." |
| 57 | + eae yarn setup |
| 58 | +} |
| 59 | + |
| 60 | +main() { |
| 61 | + echo_green "Starting ${0}..." |
| 62 | + |
| 63 | + eae "${DENDRON_MONOREPO:?}"/shell/_verify_env_variables.sh |
| 64 | + eae "${DENDRON_MONOREPO:?}"/shell/_verify_node_version.sh |
| 65 | + eae "${DENDRON_MONOREPO:?}"/shell/_verify_npm.sh |
| 66 | + eae "${DENDRON_MONOREPO:?}"/shell/_verify_yarn.sh |
| 67 | + |
| 68 | + main_impl |
| 69 | + |
| 70 | + echo "--------------------------------------------------------------------------------" |
| 71 | + echo_green "Finished ${0} successfully. For further documentation refer to https://docs.dendron.so/notes/64f0e2d5-2c83-43df-9144-40f2c68935aa/ . Particularly look for the part that talks about 'dendron-main.code-workspace' (And use File->Open Workspace from file... to open 'dendron/dendron-main.code-workspace'). Also look for './watch.sh' which wraps the watch command." |
| 72 | +} |
| 73 | + |
| 74 | +main "${@}" || exit 1 |
0 commit comments