atst/script/bootstrap
2018-07-10 10:55:28 -04:00

21 lines
577 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
# Set sass compiling command for this app
COMPILE_SASS_CMD="webassets -m atst.assets build"
# 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