atst/script/bootstrap
2018-08-02 16:48:52 -04:00

18 lines
484 B
Bash
Executable File

#!/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