2015-09-17 07:38:52 +00:00
|
|
|
#!/bin/sh
|
2017-01-02 21:04:09 +00:00
|
|
|
# Resolve all dependencies that the application requires to run.
|
2015-09-17 07:38:52 +00:00
|
|
|
|
2017-01-02 21:04:09 +00:00
|
|
|
# Stop on errors
|
|
|
|
set -e
|
2015-09-17 07:38:52 +00:00
|
|
|
|
2015-09-17 07:35:26 +00:00
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
script/bootstrap_server
|
2017-01-25 00:20:18 +00:00
|
|
|
|
2017-01-25 17:21:09 +00:00
|
|
|
if command -v yarn >/dev/null ; then
|
2017-01-25 00:20:18 +00:00
|
|
|
script/bootstrap_frontend
|
|
|
|
else
|
|
|
|
echo "Frontend development not possible without Node/yarn"
|
|
|
|
fi
|