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/[email protected]
Serve locally during development
# in .../tba-symposium/client directory
ng serve
Build for production
# set --base-href based on the site 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 2020 --base-href /2020/