Create a conda environment and install node.js v6 and git

# omit git if it's already installed globally
conda create -n node6 -c conda-forge nodejs=6 git
conda activate node6

Clone repo from github and change directory into ./tba-symposium/client

git clone https://github.com/Yu-AnChen/tba-symposium
cd tba-symposium/client
npm install
npm install -g @angular/cli@1.3.2

Serve locally during development

# in .../tba-symposium/client directory
ng serve

Build for production

# set --base-href based on the sitte structure
# in the following example, the symposium site lives under
# https://main-site.org/2020

# in .../tba-symposium/client directory
ng build --prod --output-path build-2020  --base-href /2020/