17 lines
470 B
Bash
Executable File
17 lines
470 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"
|
|
|
|
# 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
|