#!/bin/bash # script/bootstrap: Resolve all dependencies that the application requires to # run. source "$(dirname "${0}")"/../script/include/global_header.inc.sh # Enable python and node package installation INSTALL_PYTHON_PACKAGES="true" INSTALL_NODE_PACKAGES="true" # Run the shared bootstrap script source ./script/include/run_bootstrap # Link USWDS fonts into the /static directory rm -f ./static/fonts ln -s ../node_modules/uswds/src/fonts ./static/fonts